aboutsummaryrefslogtreecommitdiff
path: root/chanlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'chanlist.c')
-rw-r--r--chanlist.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/chanlist.c b/chanlist.c
new file mode 100644
index 0000000..3ccd291
--- /dev/null
+++ b/chanlist.c
@@ -0,0 +1,18 @@
+#include "chanlist.h"
+
+#include <stddef.h>
+char *g_chanlist[] = {
+ "a",
+ "b",
+ "g",
+ "the",
+};
+const int g_nchannels = sizeof(g_chanlist)/sizeof(g_chanlist[0]);
+char *g_chanpwlist[] = {
+ NULL,
+ NULL,
+ NULL,
+ "password",
+};
+
+