bfx
An interpreter, compiler, and REPL for brainfuck-like languages
Loading...
Searching...
No Matches
util.h
Go to the documentation of this file.
1
5#ifndef BFX_LANGS_UTIL_H
6#define BFX_LANGS_UTIL_H
7
8#include "bfx.h"
9
10#ifndef BFX_MAX_THREADS
14#define BFX_MAX_THREADS 128
15#endif
16
19
20#endif
BFX_Error
Definition: bfx.h:93
Structure to represent an index in a file (or user input).
Definition: bfx.h:126
Structure to store generic data for a brainfuck-like esolang interpreter.
Definition: bfx.h:149
BFX_Error bfx_build_loops(BFX *)
Builds the loop structure for the BFX instance.
Definition: util.c:21
BFX_Error bfx_parse_ops(BFX *, BFX_Error(*[128])(BFX *, BFX_FileIndex *))
Executes operations on the BFX instance.
Definition: util.c:80