Home | History | Annotate | Download | only in printf

Lines Matching defs:leading

107   /* The leading digit before the decimal point.  */
108 char leading;
289 leading = fpnum.ieee.exponent == 0 ? '0' : '1';
331 char last_digit = precision > 0 ? numstr[precision - 1] : leading;
386 leading digit. Here it is again possible that we
388 if (leading == '9')
389 leading = info->spec;
390 else if (tolower ((unsigned char)leading) < 'f')
391 ++leading;
394 leading = '1';
456 outchar (leading);