diff options
Diffstat (limited to 'lls/lls.c')
-rw-r--r-- | lls/lls.c | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -24,7 +24,21 @@ typedef struct } value; } lls_Value; +/* ָ,֧255 */ enum { - + MOVE = 1, + ADD, }; + +typedef struct +{ + int ins; + void* operant; +} lls_Ins; + + +int lls_bindfunction(lls_Context* C, const char* fname, lls_Func func) +{ + +} |