aboutsummaryrefslogtreecommitdiff
path: root/bee.c
diff options
context:
space:
mode:
Diffstat (limited to 'bee.c')
-rw-r--r--bee.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/bee.c b/bee.c
new file mode 100644
index 0000000..f7d1270
--- /dev/null
+++ b/bee.c
@@ -0,0 +1,19 @@
+#include "irc.h"
+
+#include <stdio.h>
+
+
+int
+main()
+{
+ if (!irc_connect()) { fputs("irc_connect\n",stderr); return 1; }
+ if (!irc_handshake()) { fputs("irc_handshake\n",stderr); return 1; }
+
+ int x;
+ do {
+ x = irc_recv();
+ } while (!x);
+
+ return 0;
+}
+