diff options
author | dan <[email protected]> | 2023-06-02 16:22:29 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-06-02 16:22:29 -0400 |
commit | ac8a2fd77f7661b60cf2b272090ece67f65951db (patch) | |
tree | d45442d8bcf5c40febb85fc35d02c6c4f1d3684e /drhstrings.h | |
parent | 558b0646c5580454dd35a6bdee07bcc711db134e (diff) | |
download | forth-ac8a2fd77f7661b60cf2b272090ece67f65951db.tar.gz forth-ac8a2fd77f7661b60cf2b272090ece67f65951db.tar.bz2 forth-ac8a2fd77f7661b60cf2b272090ece67f65951db.zip |
refactor: always output via buffer
Diffstat (limited to 'drhstrings.h')
-rw-r--r-- | drhstrings.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drhstrings.h b/drhstrings.h new file mode 100644 index 0000000..03fa40c --- /dev/null +++ b/drhstrings.h @@ -0,0 +1,8 @@ +#ifndef DRHSTRINGS_H +#define DRHSTRINGS_H +#include <stdbool.h> + +bool isnumber(char *text); +bool notdelim(char c); + +#endif |