Searched defs:next_char (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/tic/
H A Dtic_scan.c94 static int first_column; /* See 'next_char()' below */
142 while ((ch = next_char()) == '\n' || (isascii(ch) && iswhite(ch)));
150 while ((ch = next_char()) == ' ' || ch == '\t');
162 while ((ch = next_char()) != ',' && ch != '\n' && ch != EOF)
176 ch = next_char();
179 ch = next_char();
190 if (next_char() != ',')
198 if ((ch = next_char()) == ',')
201 if ((ch = next_char()) == '0') {
202 if ((ch = next_char())
314 next_char() function
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/tic/
H A Dticscan.c55 static int first_column; /* See 'next_char()' below */
57 STATIC int next_char ANSI((void));
114 while ((ch = next_char()) == '\n' || iswhite(ch)) {
126 while ((ch = next_char()) == ' ' || ch == '\t')
140 while ((ch = next_char()) != ',' && ch != '\n' && ch != EOF)
156 ch = next_char();
160 ch = next_char();
172 if (next_char() != ',')
180 while (isdigit(ch = next_char()))
263 next_char() function
[all...]

Completed in 74 milliseconds