Home | History | Annotate | Download | only in diff

Lines Matching refs:SPEC

130 	  char *spec = f;
195 f = scan_printf_spec (spec);
218 printf_output (spec - 1, value);
227 f = spec;
307 char *spec = f;
328 f = scan_printf_spec (spec);
350 printf_output (spec - 1, value);
358 f = spec;
413 /* Scan optional printf-style SPEC of the form `-*[0-9]*(.[0-9]*)?[cdoxX]'.
414 Return the address of the character following SPEC, or zero if failure. */
416 scan_printf_spec (spec)
417 register char *spec;
421 while ((c = *spec++) == '-')
424 c = *spec++;
426 while (ISDIGIT (c = *spec++))
431 return spec;