diff options
author | chai <chaifix@163.com> | 2018-06-01 08:31:47 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-06-01 08:31:47 +0800 |
commit | 6a4f1a224273118a5429094ddd83420b7d69b28d (patch) | |
tree | f96c714cda12af6300178cbe31880d17804802de /lls/lls.c | |
parent | a558be5f3d72775bd06c3814e002d355402a7acd (diff) |
更新示例
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) +{ + +} |