From 900eb9bca18f57531bc74d3a5f5b5e87870cd1ae Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sun, 5 Apr 2026 19:59:30 -0400 Subject: Replace cc65 lib isdigit() and atoi() with less bloated isnum() and a2uint(). --- src/irc.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/irc.h') diff --git a/src/irc.h b/src/irc.h index 91ffd00..3171033 100644 --- a/src/irc.h +++ b/src/irc.h @@ -75,3 +75,9 @@ void cmd_send_pm(char *args); void cmd_ctcp_ping(char *nick); void cmd_server_ping(void); unsigned int read_rtclok(void); /* irc.c needs this one so it's not static */ + +/* see isnum.s */ +extern char __fastcall__ isnum(char c); + +/* see a2uint.s */ +extern unsigned int __fastcall__ a2uint(char *str); -- cgit v1.2.3