aboutsummaryrefslogtreecommitdiff
path: root/chanlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'chanlist.h')
-rw-r--r--chanlist.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/chanlist.h b/chanlist.h
new file mode 100644
index 0000000..95d428e
--- /dev/null
+++ b/chanlist.h
@@ -0,0 +1,13 @@
+#ifndef chanlist_h_INCLUDED
+#define chanlist_h_INCLUDED
+
+// list of channels to join
+extern char *g_chanlist[];
+// length of the above
+extern const int g_nchannels;
+// list of passwords for channels, or NULL if no password
+// parallel to g_chanlist
+extern char *g_chanpwlist[];
+
+#endif // chanlist_h_INCLUDED
+