bfx
An interpreter, compiler, and REPL for brainfuck-like languages
Loading...
Searching...
No Matches
weave.h
Go to the documentation of this file.
1
6#ifndef BFX_LANGS_WEAVE_H
7#define BFX_LANGS_WEAVE_H
8
9#include "bfx.h"
10
13
14/* ops */
17
18#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_op_weave_exit(BFX *, BFX_FileIndex *)
Terminate current thread (weave).
Definition: weave.c:149
BFX_Error bfx_weave_run(BFX *)
Run the Weave interpreter.
Definition: weave.c:94
BFX_Error bfx_weave_init(BFX *)
Initialize the Weave interpreter.
Definition: weave.c:39
BFX_Error bfx_op_weave_toggle(BFX *, BFX_FileIndex *)
Toggle between thread and global tape (weave).
Definition: weave.c:157