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/parser.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'libalee/parser.cpp') diff --git a/libalee/parser.cpp b/libalee/parser.cpp index 3236ae2..19aa5f7 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -20,16 +20,13 @@ #include "ctype.hpp" #include "parser.hpp" -#include -#include - Error (*Parser::customParse)(State&, Word) = nullptr; Error Parser::parse(State& state, const char *str) { auto addr = Dictionary::Input; - const auto len = static_cast(std::strlen(str)); + const auto len = static_cast(strlen(str)); state.dict.write(addr, 0); state.dict.write(Dictionary::SourceLen, len); @@ -95,7 +92,7 @@ Error Parser::parseNumber(State& state, Word word) ++it; const auto end = word.end(&state.dict); - for (char c; it != end; ++it) { + for (uint8_t c; it != end; ++it) { c = *it; if (isdigit(c)) { -- cgit v1.2.3