diff options
author | dan <[email protected]> | 2023-06-02 22:04:36 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-06-02 22:04:36 -0400 |
commit | e0fcdc6e3577f8c40b019396b400928379d928b9 (patch) | |
tree | 4009df1ca50183c18de31374a368e9857ae7d666 /stack.h | |
parent | 60f09fdabfe942d2cb2d2cdb1537318ff2e89e7b (diff) | |
download | forth-e0fcdc6e3577f8c40b019396b400928379d928b9.tar.gz forth-e0fcdc6e3577f8c40b019396b400928379d928b9.tar.bz2 forth-e0fcdc6e3577f8c40b019396b400928379d928b9.zip |
feat: runtime defined words are compiled;
Diffstat (limited to 'stack.h')
-rw-r--r-- | stack.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -15,6 +15,8 @@ typedef struct { stack* stack_new(); +void stack_free(stack* s); + stackitem stack_pop(stack* s); stackitem stack_peek(stack* s); |