|
bfx
An interpreter, compiler, and REPL for brainfuck-like languages
|
#include "brainfork.h"#include "bfx.h"#include "brainfuck.h"#include "util.h"#include <string.h>Functions | |
| BFX_Error | bfx_brainfork_init (BFX *bfx) |
| Initialize the Brainfork interpreter. | |
| BFX_Error | bfx_brainfork_run (BFX *bfx) |
| Run the Brainfork interpreter. | |
| void * | bfx_brainfork_run_child (void *arg) |
| Run the Brainfork interpreter in a child thread. | |
| BFX_Error | bfx_op_brainfork_fork (BFX *bfx, BFX_FileIndex *index) |
| Fork (brainfork) | |
Initialize the Brainfork interpreter.
| bfx | Pointer to the already-allocated interpreter struct |
Run the Brainfork interpreter.
| bfx | Pointer to the interpreter struct |
| void * bfx_brainfork_run_child | ( | void * | arg | ) |
Run the Brainfork interpreter in a child thread.
| arg | Pointer to the interpreter struct |
| BFX_Error bfx_op_brainfork_fork | ( | BFX * | bfx, |
| BFX_FileIndex * | index | ||
| ) |
Fork (brainfork)