put the copyright notice inside cnoor.c
[cnoor.git] / txtwin.h
blobdab717a80263761c3ef87108259079a34410f230
1 #ifndef _TXTWIN_H
2 #define _TXTWIN_H
4 struct txtwin;
6 struct txtwin *txtwin_alloc();
7 void txtwin_gtk_init(int argc, char **argv);
8 void txtwin_free(struct txtwin *tw);
9 void txtwin_loop(struct txtwin *tw);
10 void txtwin_append(struct txtwin *tw, char *s, char *tag);
11 void txtwin_tag(struct txtwin *tw, char *name, char *fg, char *bg, char *font);
13 #endif