diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-04-04 07:18:22 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-04-04 07:18:22 -0700 |
commit | 42eed7c0f54afd5c8c688f418a482bc30ec0de89 (patch) | |
tree | 69f140d55b6edcee1250133c197ab68da15e3b6b /cppawk-include/cons.h | |
parent | 0b1a7c1e2fa96187921cc618971ac8dcf3c2ef00 (diff) | |
download | cppawk-42eed7c0f54afd5c8c688f418a482bc30ec0de89.tar.gz cppawk-42eed7c0f54afd5c8c688f418a482bc30ec0de89.tar.bz2 cppawk-42eed7c0f54afd5c8c688f418a482bc30ec0de89.zip |
New accessors stringp and symbolp.
Diffstat (limited to 'cppawk-include/cons.h')
-rw-r--r-- | cppawk-include/cons.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cppawk-include/cons.h b/cppawk-include/cons.h index 1879e18..57e23c6 100644 --- a/cppawk-include/cons.h +++ b/cppawk-include/cons.h @@ -53,6 +53,8 @@ #define false __false #define true __true #define numberp __numberp +#define stringp __stringp +#define symbolp __symbolp #define box __box #define unbox __unbox #define box_sym __box_sym |