1
1
Fork
You've already forked bftoc
0
No description
  • C 95.8%
  • Makefile 4.2%
2024年04月11日 21:50:46 +00:00
compress.h Combine putchar and getchar, and add internals 2023年08月03日 00:16:55 -04:00
LICENSE Add GPLv3 license 2023年08月03日 18:24:34 -04:00
main.c Simplify main function 2023年08月03日 15:11:55 -04:00
Makefile Initial commit 2023年07月29日 17:55:02 -04:00
opts.h More doc and init data to 0 2023年08月04日 01:14:08 -04:00
print.h More doc and init data to 0 2023年08月04日 01:14:08 -04:00
README Update README 2024年04月11日 21:50:46 +00:00

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.