text              126 gc/cord/de_win.c char * plain_chars(char * text, size_t len)
text              132 gc/cord/de_win.c        if (iscntrl(text[i])) {
text              135 gc/cord/de_win.c            result[i] = text[i];
text              144 gc/cord/de_win.c char * control_chars(char * text, size_t len)
text              150 gc/cord/de_win.c        if (iscntrl(text[i])) {
text              151 gc/cord/de_win.c            result[i] = text[i] + 0x40;
text              285 gc/cord/de_win.c       	           char * text = CORD_to_char_star(raw_line);
text              287 gc/cord/de_win.c       	           char * plain = plain_chars(text, len);
text              290 gc/cord/de_win.c       	           char * control = control_chars(text, len);