From ed04dd7fb0c859870e708da809b002508f959b1c Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 31 Mar 2026 04:10:12 -0400 Subject: Replace strcmp() and friends, tolower(), with custom (small) routines. now at 5129 bytes free. --- src/streq.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/streq.h (limited to 'src/streq.h') diff --git a/src/streq.h b/src/streq.h new file mode 100644 index 0000000..0996e29 --- /dev/null +++ b/src/streq.h @@ -0,0 +1,4 @@ +extern char lcase(char c); +extern char streq(const char *s1, const char *s2); +extern char streq_i(const char *s1, const char *s2); +extern char strneq_i(const char *s1, const char *s2, char limit); -- cgit v1.2.3