aboutsummaryrefslogtreecommitdiff
path: root/irc.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-01-24 17:35:12 +0000
committerubq323 <ubq323@ubq323.website>2023-01-24 17:35:12 +0000
commitc3d79d07b96c3e2bee7bbdfbc7ec3f6e7af59e17 (patch)
treeaa358412be78c9aa6967623b34b0b0d905abedb7 /irc.h
parent60a4a26ce76850f3d374d7206e702fbc6548f58b (diff)
support passwords for joining channels, and refactor channel list into a separate module
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/irc.h b/irc.h
index 870508f..d319eee 100644
--- a/irc.h
+++ b/irc.h
@@ -13,12 +13,6 @@
// fd of the irc connection socket
extern int g_ircsock;
-// list of channels to join
-extern char *g_chanlist[];
-// length of the above
-extern const int g_nchannels;
-
-
// connects to the irc server, as defined in config.h
// returns -1 on failure.
int irc_connect();