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/irc.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/irc.h') diff --git a/src/irc.h b/src/irc.h index 05a0441..5e831b9 100644 --- a/src/irc.h +++ b/src/irc.h @@ -1,7 +1,9 @@ #define MAX_IRC_MSG_LEN 512 +/* #define streq(x,y) !strcmp(x,y) #define streq_i(x,y) !strcasecmp(x,y) +*/ /**** main.c */ extern char *rx_buf; -- cgit v1.2.3