Home | History | Annotate | Download | only in stdio

Lines Matching refs:exp

1 /*	$OpenBSD: vfprintf.c,v 1.37 2006/01/13 17:56:18 millert Exp $	*/
1271 exponent(char *p0, int exp, int fmtch)
1278 if (exp < 0) {
1279 exp = -exp;
1285 if (exp > 9) {
1287 *--t = to_char(exp % 10);
1288 } while ((exp /= 10) > 9);
1289 *--t = to_char(exp);
1294 *p++ = to_char(exp);