diff options
author | dan <[email protected]> | 2023-06-02 22:38:16 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-06-02 22:38:16 -0400 |
commit | 31ae9a14ef4d76eaf3ad79fb31477ea4596d047e (patch) | |
tree | a00850c3d809fc7b31ed9183c5f617125df18ac9 /forthmachine.h | |
parent | e0fcdc6e3577f8c40b019396b400928379d928b9 (diff) | |
download | forth-31ae9a14ef4d76eaf3ad79fb31477ea4596d047e.tar.gz forth-31ae9a14ef4d76eaf3ad79fb31477ea4596d047e.tar.bz2 forth-31ae9a14ef4d76eaf3ad79fb31477ea4596d047e.zip |
feat: can overwrite existing functions
Diffstat (limited to 'forthmachine.h')
-rw-r--r-- | forthmachine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forthmachine.h b/forthmachine.h index 50eb4d8..28f3932 100644 --- a/forthmachine.h +++ b/forthmachine.h @@ -65,7 +65,7 @@ struct optable { */ wordop* optable_getop(optable* optable, char *word); -void defineop(forthmachine* fm, char *input, int* starti); +void optable_defineop(optable* optable, char *input, int* starti); optable* optable_new(); |