aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-31 04:10:12 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-31 04:10:12 -0400
commited04dd7fb0c859870e708da809b002508f959b1c (patch)
tree795176851a8010f6284c723e56c6471b78531513 /src/irc.h
parent5a1d4762bc8fdd39a014bd5f469089f944bc5944 (diff)
downloadfujinet-chat-ed04dd7fb0c859870e708da809b002508f959b1c.tar.gz
Replace strcmp() and friends, tolower(), with custom (small) routines. now at 5129 bytes free.
Diffstat (limited to 'src/irc.h')
-rw-r--r--src/irc.h2
1 files changed, 2 insertions, 0 deletions
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;