From cdf19490df966f53e8c89677296e6a8b34cff497 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 12 Nov 2023 14:38:30 -0500 Subject: no more cstring; 16mhz/115200 msp430; fix dict init --- libalee/ctype.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libalee/ctype.hpp') 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 +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'; } -- cgit v1.2.3