Home | History | Annotate | Download | only in jpeg-6b

Lines Matching refs:termchar

38 read_text_integer (FILE * file, long * result, int * termchar)
40 /* Reads one trailing character after the integer; returns it in termchar */
49 *termchar = ch;
55 *termchar = ch;
67 *termchar = ch;
86 int tblno, i, termchar;
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
104 if (! read_text_integer(fp, &val, &termchar)) {
115 if (termchar != EOF) {
129 read_scan_integer (FILE * file, long * result, int * termchar)
130 /* Variant of read_text_integer that always looks for a non-space termchar;
136 if (! read_text_integer(file, result, termchar))
138 ch = *termchar;
152 *termchar = ch;
176 int scanno, ncomps, termchar;
189 while (read_scan_integer(fp, &val, &termchar)) {
197 while (termchar == ' ') {
204 if (! read_scan_integer(fp, &val, &termchar))
210 if (termchar == ':') {
211 if (! read_scan_integer(fp, &val, &termchar) || termchar != ' ')
214 if (! read_scan_integer(fp, &val, &termchar) || termchar != ' ')
217 if (! read_scan_integer(fp, &val, &termchar) || termchar != ' ')
220 if (! read_scan_integer(fp, &val, &termchar))
230 if (termchar != ';' && termchar != EOF) {
239 if (termchar != EOF) {