383: PRINT((p), n2); \
384: PAD((len) - (n2 > 0 ? n2 : 0), (with)); \
385: } while(0)
1001: if ((flags & (LADJUST|ZEROPAD)) == 0)
1002: PAD(width - realsz, blanks);
1003:
1013: if ((flags & (LADJUST|ZEROPAD)) == ZEROPAD)
1014: PAD(width - realsz, zeroes);
1015:
1016: /* leading zeroes from decimal precision */
1017: PAD(dprec - size, zeroes);
1018:
1028: PRINT(decimal_point, 1);
1029: PAD(-expt, zeroes);
1030: /* already handled initial 0's */
1044: PRINT(cp, ndig-1);
1045: PAD(prec - ndig, zeroes);
1046: } else { /* XeYYY */
1056: if (flags & LADJUST)
1057: PAD(width - realsz, blanks);
1058: