ref: 1be7f16d6216762401da82b50a1b1606f5ac9667
dir: /mez.h/
typedef struct App App; typedef struct Chan Chan; typedef struct Net Net; typedef struct Text Text; struct App { char *host, *user, *passwd; }; struct Text { Frame; Rune *text; uint textlen, topline, nlines, linescap, textcap, *lines; Rectangle scrollr, bodyr; Image *screen, *cols[NCOL]; Screen *_screen; }; struct Chan { Text body, nicks; Rune *topic; }; struct Net { Chan; char *name, *host, *state, *nick, *user, *real; Chan *channels; int fd, id; };