ref: c9133834024f6fd08a9c0410f67885c2382427ec
dir: /mez.h/
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;
};