1 /* Provide a version _doprnt in terms of fprintf.
2 Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
3 Contributed by Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #ifdef TEST /* Make sure to use the internal one. */
24 #define _doprnt my_doprnt
29 const int value = abs (va_arg (ap, int)); \
31 ptr++; /* Go past the asterisk. */ \
32 *sptr = '\0'; /* NULL terminate sptr. */ \
33 sprintf(buf, "%d", value); \
35 while (*sptr) sptr++; \
38 #define PRINT_CHAR(CHAR) \
46 #define PRINT_TYPE(TYPE) \
49 TYPE value = va_arg (ap, TYPE); \
50 *sptr++ = *ptr++; /* Copy the type specifier. */ \
51 *sptr = '\0'; /* NULL terminate sptr. */ \
52 result = fprintf(stream, specifier, value); \
57 total_printed += result; \
63 _doprnt (format
, ap
, stream
)
68 const char * ptr
= format
;
70 int total_printed
= 0;
74 if (*ptr
!= '%') /* While we have regular characters, print them. */
76 else /* We got a format specifier! */
78 char * sptr
= specifier
;
79 int wide_width
= 0, short_width
= 0;
81 *sptr
++ = *ptr
++; /* Copy the % and move forward. */
83 while (strchr ("-+ #0", *ptr
)) /* Move past flags. */
89 while (ISDIGIT(*ptr
)) /* Handle explicit numeric value. */
94 *sptr
++ = *ptr
++; /* Copy and go past the period. */
98 while (ISDIGIT(*ptr
)) /* Handle explicit numeric value. */
101 while (strchr ("hlL", *ptr
))
130 /* Short values are promoted to int, so just copy it
131 as an int and trust the C library printf to cast it
132 to the right width. */
147 #if defined(__GNUC__) || defined(HAVE_LONG_LONG)
148 PRINT_TYPE(long long);
150 PRINT_TYPE(long); /* Fake it and hope for the best. */
153 } /* End of switch (wide_width) */
154 } /* End of else statement */
155 } /* End of integer case */
167 #if defined(__GNUC__) || defined(HAVE_LONG_DOUBLE)
168 PRINT_TYPE(long double);
170 PRINT_TYPE(double); /* Fake it and hope for the best. */
186 } /* End of switch (*ptr) */
187 } /* End of else statement */
190 return total_printed
;
197 #define M_PI (3.1415926535897932385)
200 #define RESULT(x) do \
203 printf ("printed %d characters\n", i); \
207 static int checkit
PARAMS ((const char * format
, ...)) ATTRIBUTE_PRINTF_1
;
210 checkit
VPARAMS ((const char* format
, ...))
215 #ifndef ANSI_PROTOTYPES
219 VA_START (args
, format
);
221 #ifndef ANSI_PROTOTYPES
222 format
= va_arg (args
, char *);
225 result
= _doprnt (format
, args
, stdout
);
234 RESULT(checkit ("<%d>\n", 0x12345678));
235 RESULT(printf ("<%d>\n", 0x12345678));
237 RESULT(checkit ("<%200d>\n", 5));
238 RESULT(printf ("<%200d>\n", 5));
240 RESULT(checkit ("<%.300d>\n", 6));
241 RESULT(printf ("<%.300d>\n", 6));
243 RESULT(checkit ("<%100.150d>\n", 7));
244 RESULT(printf ("<%100.150d>\n", 7));
246 RESULT(checkit ("<%s>\n",
247 "jjjjjjjjjiiiiiiiiiiiiiiioooooooooooooooooppppppppppppaa\n\
248 777777777777777777333333333333366666666666622222222222777777777777733333"));
249 RESULT(printf ("<%s>\n",
250 "jjjjjjjjjiiiiiiiiiiiiiiioooooooooooooooooppppppppppppaa\n\
251 777777777777777777333333333333366666666666622222222222777777777777733333"));
253 RESULT(checkit ("<%f><%0+#f>%s%d%s>\n",
254 1.0, 1.0, "foo", 77, "asdjffffffffffffffiiiiiiiiiiixxxxx"));
255 RESULT(printf ("<%f><%0+#f>%s%d%s>\n",
256 1.0, 1.0, "foo", 77, "asdjffffffffffffffiiiiiiiiiiixxxxx"));
258 RESULT(checkit ("<%4f><%.4f><%%><%4.4f>\n", M_PI
, M_PI
, M_PI
));
259 RESULT(printf ("<%4f><%.4f><%%><%4.4f>\n", M_PI
, M_PI
, M_PI
));
261 RESULT(checkit ("<%*f><%.*f><%%><%*.*f>\n", 3, M_PI
, 3, M_PI
, 3, 3, M_PI
));
262 RESULT(printf ("<%*f><%.*f><%%><%*.*f>\n", 3, M_PI
, 3, M_PI
, 3, 3, M_PI
));
264 RESULT(checkit ("<%d><%i><%o><%u><%x><%X><%c>\n",
265 75, 75, 75, 75, 75, 75, 75));
266 RESULT(printf ("<%d><%i><%o><%u><%x><%X><%c>\n",
267 75, 75, 75, 75, 75, 75, 75));
269 RESULT(checkit ("<%d><%i><%o><%u><%x><%X><%c>\n",
270 75, 75, 75, 75, 75, 75, 75));
271 RESULT(printf ("<%d><%i><%o><%u><%x><%X><%c>\n",
272 75, 75, 75, 75, 75, 75, 75));
274 RESULT(checkit ("Testing (hd) short: <%d><%ld><%hd><%hd><%d>\n", 123, (long)234, 345, 123456789, 456));
275 RESULT(printf ("Testing (hd) short: <%d><%ld><%hd><%hd><%d>\n", 123, (long)234, 345, 123456789, 456));
277 #if defined(__GNUC__) || defined (HAVE_LONG_LONG)
278 RESULT(checkit ("Testing (lld) long long: <%d><%lld><%d>\n", 123, 234234234234234234LL, 345));
279 RESULT(printf ("Testing (lld) long long: <%d><%lld><%d>\n", 123, 234234234234234234LL, 345));
280 RESULT(checkit ("Testing (Ld) long long: <%d><%Ld><%d>\n", 123, 234234234234234234LL, 345));
281 RESULT(printf ("Testing (Ld) long long: <%d><%Ld><%d>\n", 123, 234234234234234234LL, 345));
284 #if defined(__GNUC__) || defined (HAVE_LONG_DOUBLE)
285 RESULT(checkit ("Testing (Lf) long double: <%.20f><%.20Lf><%0+#.20f>\n",
286 1.23456, 1.234567890123456789L, 1.23456));
287 RESULT(printf ("Testing (Lf) long double: <%.20f><%.20Lf><%0+#.20f>\n",
288 1.23456, 1.234567890123456789L, 1.23456));