No description
| compress.h | Combine putchar and getchar, and add internals | |
| LICENSE | Add GPLv3 license | |
| main.c | Simplify main function | |
| Makefile | Initial commit | |
| opts.h | More doc and init data to 0 | |
| print.h | More doc and init data to 0 | |
| README | Update README | |
Brainfuck to C compiler (NOT WORKING!!!) =================== Goals: * In readable C source code * Good documentation How to run bftoc ================= Run the command make: make Then run bftoc: ./bftoc Compile Requirements ==================== GNU Make 4.4.1+ GCC 13.1.1+ or Clang 16.0.5+ Glibc 2.37+ Assumptions =========== Assumes <stdio.h> functions always work and whole starting array to be zero. Internals ========= First, parse the inputted string and condense it into intermediate representation as defined in compress.h. Then printf to stdout in print.h.