diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-12 14:38:30 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-12 14:38:30 -0500 |
commit | cdf19490df966f53e8c89677296e6a8b34cff497 (patch) | |
tree | 154e1f9784fa1d55d49767c4c6391bf91cf0d556 /libalee/ctype.hpp | |
parent | 69152efdad181c70fd794ecba5f5f48f23bc67bd (diff) |
no more cstring; 16mhz/115200 msp430; fix dict init
Diffstat (limited to 'libalee/ctype.hpp')
-rw-r--r-- | libalee/ctype.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libalee/ctype.hpp b/libalee/ctype.hpp index 878c747..499a90f 100644 --- a/libalee/ctype.hpp +++ b/libalee/ctype.hpp @@ -25,6 +25,12 @@ #include <cstdint> +constexpr inline unsigned strlen(const char * const s) { + unsigned i = 0; + while (s[i]) i++; + return i; +} + constexpr inline bool isspace(uint8_t c) { return c == ' ' || c == '\t' || c == '\r' || c == '\n'; } |