ref: c9133834024f6fd08a9c0410f67885c2382427ec
parent: aca0f958f91ee7adaaae77eb85c8ca9b8467da87
author: spew <spew@palas>
date: Wed Jan 29 02:00:05 EST 2025
add the header
--- /dev/null
+++ b/mez.h
@@ -1,0 +1,21 @@
+typedef struct App App;
+typedef struct Net Net;
+typedef struct Chan Chan;
+
+struct App {
+ char *host, *user, *passwd;
+};
+
+struct Chan {
+ Frame;
+ Rune *body, *nicks, *topic;
+ int bodylen, curline, totlines;
+ Rectangle scrollr;
+};
+
+struct Net {
+ Chan;
+ char *name, *host, *state, *nick, *user, *real;
+ Chan *channels;
+ int fd, id;
+};