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/corewords.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'libalee/corewords.hpp') diff --git a/libalee/corewords.hpp b/libalee/corewords.hpp index 25f6a6e..d5c35ea 100644 --- a/libalee/corewords.hpp +++ b/libalee/corewords.hpp @@ -19,11 +19,10 @@ #ifndef ALEEFORTH_COREWORDS_HPP #define ALEEFORTH_COREWORDS_HPP +#include "ctype.hpp" #include "types.hpp" #include "state.hpp" -#include - /** * To be implemented by the user, this function is called when the `sys` word * is executed. @@ -42,7 +41,7 @@ public: */ static Cell findi(State&, Word); consteval static Cell findi(const char *word) { - return findi(word, std::strlen(word)); + return findi(word, strlen(word)); } /** @@ -67,7 +66,7 @@ private: const char *ptr = CoreWords::wordsarr; for (Cell wordsi = 0; wordsi < WordCount; ++wordsi) { - std::size_t wordsize = std::strlen(ptr); + std::size_t wordsize = strlen(ptr); if (wordsize == size && Dictionary::equal(ptr, ptr + wordsize, it)) return wordsi; -- cgit v1.2.3