aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-09 06:36:48 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-09 06:36:48 -0400
commit17a4ac8d12cff23369b830be656eaa1e6d767798 (patch)
tree4b849d1ced96a438dfeee012ac84ad6cb78daf55 /src/irc.h
parent9dba8f52b61b1d56d9cf8e63bd1dde2b31b25a5d (diff)
downloadfujinet-chat-17a4ac8d12cff23369b830be656eaa1e6d767798.tar.gz
handle CTCP responses, especially PING.
Diffstat (limited to 'src/irc.h')
-rw-r--r--src/irc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/irc.h b/src/irc.h
index 18a9d86..b6791ad 100644
--- a/src/irc.h
+++ b/src/irc.h
@@ -11,6 +11,7 @@ extern char *rx_buf;
extern unsigned short rxbuflen;
extern unsigned char err;
extern unsigned char trip;
+extern char hz;
extern unsigned int txbuflen;
extern char *tx_buf;
@@ -41,6 +42,7 @@ void print_error(unsigned char err);
/**** irc.c */
#define MAX_MSG_ARGS 8
+extern char numbuf[10];
extern char *msg_src, *msg_cmd, *msg_dest, *msg_text;
extern char *msg_args[MAX_MSG_ARGS];
extern int msg_argcount;
@@ -59,3 +61,4 @@ void print_errnum(void);
/**** cmd.c */
void cmd_command(char *cmd);
void cmd_execute(void);
+long read_rtclok(void); /* irc.c needs this one so it's not static */