Lines Matching defs:text
42 * displaying of text
65 * Display some text on somebody's window, processing some control
69 display(xwin_t *win, char *text, int size)
75 if (*text == '\n') {
77 text++;
81 if (*text == win->cerase) {
87 text++;
95 if (*text == win->werase) {
117 text++;
121 if (*text == win->kill) {
125 text++;
128 if (*text == '\f') {
131 text++;
134 if (*text == '\07') {
136 text++;
143 if ( !isprint((u_char)*text) && *text != '\t') {
148 cch = (*text & 63) + 64;
151 waddch(win->x_win, *text);
153 text++;