]> git.llucax.com Git - software/mutt-debian.git/blob - snprintf.c
+ upstream/533370-pgp-inline.patch: fixing the patch from 1.5.20-3, now pgp.c is...
[software/mutt-debian.git] / snprintf.c
1 /**************************************************************
2  * Original:
3  * Patrick Powell Tue Apr 11 09:48:21 PDT 1995
4  * A bombproof version of doprnt (dopr) included.
5  * Sigh.  This sort of thing is always nasty do deal with.  Note that
6  * the version here does not include floating point...
7  *
8  * snprintf() is used instead of sprintf() as it does limit checks
9  * for string length.  This covers a nasty loophole.
10  *
11  * The other functions are there to prevent NULL pointers from
12  * causing nast effects.
13  *
14  * More Recently:
15  *  Brandon Long <blong@fiction.net> 9/15/96 for mutt 0.43
16  *  This was ugly.  It is still ugly.  I opted out of floating point
17  *  numbers, but the formatter understands just about everything
18  *  from the normal C string format, at least as far as I can tell from
19  *  the Solaris 2.5 printf(3S) man page.
20  *
21  *  Brandon Long <blong@fiction.net> 10/22/97 for mutt 0.87.1
22  *    Ok, added some minimal floating point support, which means this
23  *    probably requires libm on most operating systems.  Don't yet
24  *    support the exponent (e,E) and sigfig (g,G).  Also, fmtint()
25  *    was pretty badly broken, it just wasn't being exercised in ways
26  *    which showed it, so that's been fixed.  Also, formated the code
27  *    to mutt conventions, and removed dead code left over from the
28  *    original.  Also, there is now a builtin-test, just compile with:
29  *           gcc -DTEST_SNPRINTF -o snprintf snprintf.c -lm
30  *    and run snprintf for results.
31  * 
32  *  Thomas Roessler <roessler@does-not-exist.org> 01/27/98 for mutt 0.89i
33  *    The PGP code was using unsigned hexadecimal formats. 
34  *    Unfortunately, unsigned formats simply didn't work.
35  *
36  *  Michael Elkins <me@mutt.org> 03/05/98 for mutt 0.90.8
37  *    The original code assumed that both snprintf() and vsnprintf() were
38  *    missing.  Some systems only have snprintf() but not vsnprintf(), so
39  *    the code is now broken down under HAVE_SNPRINTF and HAVE_VSNPRINTF.
40  *
41  *  Holger Weiss <holger@zedat.fu-berlin.de> 07/23/06 for mutt 1.5.13
42  *    A C99 compliant [v]snprintf() returns the number of characters that
43  *    would have been written to a sufficiently sized buffer (excluding
44  *    the '\0').  Mutt now relies on this behaviour, but the original
45  *    code simply returned the length of the resulting output string, so
46  *    that's been fixed.
47  *
48  **************************************************************/
49
50 #if HAVE_CONFIG_H
51 # include "config.h"
52 #endif
53
54 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
55
56 #include <string.h>
57 # include <ctype.h>
58 #include <sys/types.h>
59
60 /* Define this as a fall through, HAVE_STDARG_H is probably already set */
61
62 #define HAVE_VARARGS_H
63
64 /* varargs declarations: */
65
66 #if defined(HAVE_STDARG_H)
67 # include <stdarg.h>
68 # define HAVE_STDARGS    /* let's hope that works everywhere (mj) */
69 # define VA_LOCAL_DECL   va_list ap
70 # define VA_START(f)     va_start(ap, f)
71 # define VA_SHIFT(v,t)  ;   /* no-op for ANSI */
72 # define VA_END          va_end(ap)
73 #else
74 # if defined(HAVE_VARARGS_H)
75 #  include <varargs.h>
76 #  undef HAVE_STDARGS
77 #  define VA_LOCAL_DECL   va_list ap
78 #  define VA_START(f)     va_start(ap)      /* f is ignored! */
79 #  define VA_SHIFT(v,t) v = va_arg(ap,t)
80 #  define VA_END        va_end(ap)
81 # else
82 /*XX ** NO VARARGS ** XX*/
83 # endif
84 #endif
85
86 /*int snprintf (char *str, size_t count, const char *fmt, ...);*/
87 /*int vsnprintf (char *str, size_t count, const char *fmt, va_list arg);*/
88
89 static int dopr (char *buffer, size_t maxlen, const char *format, 
90                   va_list args);
91 static void fmtstr (char *buffer, size_t *currlen, size_t maxlen,
92                     char *value, int flags, int min, int max);
93 static void fmtint (char *buffer, size_t *currlen, size_t maxlen,
94                     long value, int base, int min, int max, int flags);
95 static void fmtfp (char *buffer, size_t *currlen, size_t maxlen,
96                    long double fvalue, int min, int max, int flags);
97 static void dopr_outch (char *buffer, size_t *currlen, size_t maxlen, char c );
98
99 /*
100  * dopr(): poor man's version of doprintf
101  */
102
103 /* format read states */
104 #define DP_S_DEFAULT 0
105 #define DP_S_FLAGS   1
106 #define DP_S_MIN     2
107 #define DP_S_DOT     3
108 #define DP_S_MAX     4
109 #define DP_S_MOD     5
110 #define DP_S_CONV    6
111 #define DP_S_DONE    7
112
113 /* format flags - Bits */
114 #define DP_F_MINUS      (1 << 0)
115 #define DP_F_PLUS       (1 << 1)
116 #define DP_F_SPACE      (1 << 2)
117 #define DP_F_NUM        (1 << 3)
118 #define DP_F_ZERO       (1 << 4)
119 #define DP_F_UP         (1 << 5)
120 #define DP_F_UNSIGNED   (1 << 6)
121
122 /* Conversion Flags */
123 #define DP_C_SHORT    1
124 #define DP_C_LONG     2
125 #define DP_C_LONGLONG 3
126 #define DP_C_LDOUBLE  4
127
128 #define char_to_int(p) (p - '0')
129 #undef MAX
130 #define MAX(p,q) ((p >= q) ? p : q)
131
132 static int dopr (char *buffer, size_t maxlen, const char *format, va_list args)
133 {
134   char ch;
135   long value;
136   long double fvalue;
137   char *strvalue;
138   int min;
139   int max;
140   int state;
141   int flags;
142   int cflags;
143   size_t currlen;
144   
145   state = DP_S_DEFAULT;
146   currlen = flags = cflags = min = 0;
147   max = -1;
148   ch = *format++;
149
150   while (state != DP_S_DONE)
151   {
152     if (ch == '\0')
153       state = DP_S_DONE;
154
155     switch(state) 
156     {
157     case DP_S_DEFAULT:
158       if (ch == '%') 
159         state = DP_S_FLAGS;
160       else 
161         dopr_outch (buffer, &currlen, maxlen, ch);
162       ch = *format++;
163       break;
164     case DP_S_FLAGS:
165       switch (ch) 
166       {
167       case '-':
168         flags |= DP_F_MINUS;
169         ch = *format++;
170         break;
171       case '+':
172         flags |= DP_F_PLUS;
173         ch = *format++;
174         break;
175       case ' ':
176         flags |= DP_F_SPACE;
177         ch = *format++;
178         break;
179       case '#':
180         flags |= DP_F_NUM;
181         ch = *format++;
182         break;
183       case '0':
184         flags |= DP_F_ZERO;
185         ch = *format++;
186         break;
187       default:
188         state = DP_S_MIN;
189         break;
190       }
191       break;
192     case DP_S_MIN:
193       if (isdigit((unsigned char)ch)) 
194       {
195         min = 10*min + char_to_int (ch);
196         ch = *format++;
197       } 
198       else if (ch == '*') 
199       {
200         min = va_arg (args, int);
201         ch = *format++;
202         state = DP_S_DOT;
203       } 
204       else 
205         state = DP_S_DOT;
206       break;
207     case DP_S_DOT:
208       if (ch == '.') 
209       {
210         state = DP_S_MAX;
211         ch = *format++;
212       } 
213       else 
214         state = DP_S_MOD;
215       break;
216     case DP_S_MAX:
217       if (isdigit((unsigned char)ch)) 
218       {
219         if (max < 0)
220           max = 0;
221         max = 10*max + char_to_int (ch);
222         ch = *format++;
223       } 
224       else if (ch == '*') 
225       {
226         max = va_arg (args, int);
227         ch = *format++;
228         state = DP_S_MOD;
229       } 
230       else 
231         state = DP_S_MOD;
232       break;
233     case DP_S_MOD:
234       switch (ch) 
235       {
236       case 'h':
237         cflags = DP_C_SHORT;
238         ch = *format++;
239         break;
240       case 'l':
241         cflags = DP_C_LONG;
242         ch = *format++;
243         if (ch == 'l')
244         {
245           cflags = DP_C_LONGLONG;
246           ch = *format++;
247         }
248         break;
249       case 'L':
250         cflags = DP_C_LDOUBLE;
251         ch = *format++;
252         break;
253       default:
254         break;
255       }
256       state = DP_S_CONV;
257       break;
258     case DP_S_CONV:
259       switch (ch) 
260       {
261       case 'd':
262       case 'i':
263         if (cflags == DP_C_SHORT) 
264           value = va_arg (args, short int);
265         else if (cflags == DP_C_LONG)
266           value = va_arg (args, long int);
267         else if (cflags == DP_C_LONGLONG)
268           value = va_arg (args, long long int);
269         else
270           value = va_arg (args, int);
271         fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags);
272         break;
273       case 'o':
274         flags |= DP_F_UNSIGNED;
275         if (cflags == DP_C_SHORT)
276           value = va_arg (args, unsigned short int);
277         else if (cflags == DP_C_LONG)
278           value = va_arg (args, unsigned long int);
279         else if (cflags == DP_C_LONGLONG)
280           value = va_arg (args, unsigned long long int);
281         else
282           value = va_arg (args, unsigned int);
283         fmtint (buffer, &currlen, maxlen, value, 8, min, max, flags);
284         break;
285       case 'u':
286         flags |= DP_F_UNSIGNED;
287         if (cflags == DP_C_SHORT)
288           value = va_arg (args, unsigned short int);
289         else if (cflags == DP_C_LONG)
290           value = va_arg (args, unsigned long int);
291         else if (cflags == DP_C_LONGLONG)
292           value = va_arg (args, unsigned long long int);
293         else
294           value = va_arg (args, unsigned int);
295         fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags);
296         break;
297       case 'X':
298         flags |= DP_F_UP;
299       case 'x':
300         flags |= DP_F_UNSIGNED;
301         if (cflags == DP_C_SHORT)
302           value = va_arg (args, unsigned short int);
303         else if (cflags == DP_C_LONG)
304           value = va_arg (args, unsigned long int);
305         else if (cflags == DP_C_LONGLONG)
306           value = va_arg (args, unsigned long long int);
307         else
308           value = va_arg (args, unsigned int);
309         fmtint (buffer, &currlen, maxlen, value, 16, min, max, flags);
310         break;
311       case 'f':
312         if (cflags == DP_C_LDOUBLE)
313           fvalue = va_arg (args, long double);
314         else
315           fvalue = va_arg (args, double);
316         /* um, floating point? */
317         fmtfp (buffer, &currlen, maxlen, fvalue, min, max, flags);
318         break;
319       case 'E':
320         flags |= DP_F_UP;
321       case 'e':
322         if (cflags == DP_C_LDOUBLE)
323           fvalue = va_arg (args, long double);
324         else
325           fvalue = va_arg (args, double);
326         break;
327       case 'G':
328         flags |= DP_F_UP;
329       case 'g':
330         if (cflags == DP_C_LDOUBLE)
331           fvalue = va_arg (args, long double);
332         else
333           fvalue = va_arg (args, double);
334         break;
335       case 'c':
336         dopr_outch (buffer, &currlen, maxlen, va_arg (args, int));
337         break;
338       case 's':
339         strvalue = va_arg (args, char *);
340         fmtstr (buffer, &currlen, maxlen, strvalue, flags, min, max);
341         break;
342       case 'p':
343         strvalue = va_arg (args, void *);
344         fmtint (buffer, &currlen, maxlen, (long) strvalue, 16, min, max, flags);
345         break;
346       case 'n':
347         if (cflags == DP_C_SHORT) 
348         {
349           short int *num;
350           num = va_arg (args, short int *);
351           *num = currlen;
352         } 
353         else if (cflags == DP_C_LONG) 
354         {
355           long int *num;
356           num = va_arg (args, long int *);
357           *num = currlen;
358         } 
359         else if (cflags == DP_C_LONGLONG) 
360         {
361           long long int *num;
362           num = va_arg (args, long long int *);
363           *num = currlen;
364         } 
365         else 
366         {
367           int *num;
368           num = va_arg (args, int *);
369           *num = currlen;
370         }
371         break;
372       case '%':
373         dopr_outch (buffer, &currlen, maxlen, ch);
374         break;
375       case 'w':
376         /* not supported yet, treat as next char */
377         ch = *format++;
378         break;
379       default:
380         /* Unknown, skip */
381         break;
382       }
383       ch = *format++;
384       state = DP_S_DEFAULT;
385       flags = cflags = min = 0;
386       max = -1;
387       break;
388     case DP_S_DONE:
389       break;
390     default:
391       /* hmm? */
392       break; /* some picky compilers need this */
393     }
394   }
395   if (currlen < maxlen - 1) 
396     buffer[currlen] = '\0';
397   else 
398     buffer[maxlen - 1] = '\0';
399
400   return (int)currlen;
401 }
402
403 static void fmtstr (char *buffer, size_t *currlen, size_t maxlen,
404                     char *value, int flags, int min, int max)
405 {
406   int padlen, strln;     /* amount to pad */
407   int cnt = 0;
408   
409   if (!value)
410   {
411     value = "<NULL>";
412   }
413
414   for (strln = 0; value[strln]; ++strln); /* strlen */
415   padlen = min - strln;
416   if (padlen < 0) 
417     padlen = 0;
418   if (flags & DP_F_MINUS) 
419     padlen = -padlen; /* Left Justify */
420
421   while ((padlen > 0) && (max == -1 || cnt < max)) 
422   {
423     dopr_outch (buffer, currlen, maxlen, ' ');
424     --padlen;
425     ++cnt;
426   }
427   while (*value && (max == -1 || cnt < max)) 
428   {
429     dopr_outch (buffer, currlen, maxlen, *value++);
430     ++cnt;
431   }
432   while ((padlen < 0) && (max == -1 || cnt < max)) 
433   {
434     dopr_outch (buffer, currlen, maxlen, ' ');
435     ++padlen;
436     ++cnt;
437   }
438 }
439
440 /* Have to handle DP_F_NUM (ie 0x and 0 alternates) */
441
442 static void fmtint (char *buffer, size_t *currlen, size_t maxlen,
443                     long value, int base, int min, int max, int flags)
444 {
445   int signvalue = 0;
446   unsigned long uvalue;
447   char convert[20];
448   int place = 0;
449   int spadlen = 0; /* amount to space pad */
450   int zpadlen = 0; /* amount to zero pad */
451   int caps = 0;
452   
453   if (max < 0)
454     max = 0;
455
456   uvalue = value;
457
458   if(!(flags & DP_F_UNSIGNED))
459   {
460     if( value < 0 ) {
461       signvalue = '-';
462       uvalue = -value;
463     }
464     else
465       if (flags & DP_F_PLUS)  /* Do a sign (+/i) */
466         signvalue = '+';
467     else
468       if (flags & DP_F_SPACE)
469         signvalue = ' ';
470   }
471   
472   if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
473
474   do {
475     convert[place++] =
476       (caps? "0123456789ABCDEF":"0123456789abcdef")
477       [uvalue % (unsigned)base  ];
478     uvalue = (uvalue / (unsigned)base );
479   } while(uvalue && (place < 20));
480   if (place == 20) place--;
481   convert[place] = 0;
482
483   zpadlen = max - place;
484   spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
485   if (zpadlen < 0) zpadlen = 0;
486   if (spadlen < 0) spadlen = 0;
487   if (flags & DP_F_ZERO)
488   {
489     zpadlen = MAX(zpadlen, spadlen);
490     spadlen = 0;
491   }
492   if (flags & DP_F_MINUS) 
493     spadlen = -spadlen; /* Left Justifty */
494
495 #ifdef DEBUG_SNPRINTF
496   dprint (1, (debugfile, "zpad: %d, spad: %d, min: %d, max: %d, place: %d\n",
497       zpadlen, spadlen, min, max, place));
498 #endif
499
500   /* Spaces */
501   while (spadlen > 0) 
502   {
503     dopr_outch (buffer, currlen, maxlen, ' ');
504     --spadlen;
505   }
506
507   /* Sign */
508   if (signvalue) 
509     dopr_outch (buffer, currlen, maxlen, signvalue);
510
511   /* Zeros */
512   if (zpadlen > 0) 
513   {
514     while (zpadlen > 0)
515     {
516       dopr_outch (buffer, currlen, maxlen, '0');
517       --zpadlen;
518     }
519   }
520
521   /* Digits */
522   while (place > 0) 
523     dopr_outch (buffer, currlen, maxlen, convert[--place]);
524   
525   /* Left Justified spaces */
526   while (spadlen < 0) {
527     dopr_outch (buffer, currlen, maxlen, ' ');
528     ++spadlen;
529   }
530 }
531
532 static long double abs_val (long double value)
533 {
534   long double result = value;
535
536   if (value < 0)
537     result = -value;
538
539   return result;
540 }
541
542 static long double pow10 (int exp)
543 {
544   long double result = 1;
545
546   while (exp)
547   {
548     result *= 10;
549     exp--;
550   }
551   
552   return result;
553 }
554
555 static long round (long double value)
556 {
557   long intpart;
558
559   intpart = value;
560   value = value - intpart;
561   if (value >= 0.5)
562     intpart++;
563
564   return intpart;
565 }
566
567 static void fmtfp (char *buffer, size_t *currlen, size_t maxlen,
568                    long double fvalue, int min, int max, int flags)
569 {
570   int signvalue = 0;
571   long double ufvalue;
572   char iconvert[20];
573   char fconvert[20];
574   int iplace = 0;
575   int fplace = 0;
576   int padlen = 0; /* amount to pad */
577   int zpadlen = 0; 
578   int caps = 0;
579   long intpart;
580   long fracpart;
581   
582   /* 
583    * AIX manpage says the default is 0, but Solaris says the default
584    * is 6, and sprintf on AIX defaults to 6
585    */
586   if (max < 0)
587     max = 6;
588
589   ufvalue = abs_val (fvalue);
590
591   if (fvalue < 0)
592     signvalue = '-';
593   else
594     if (flags & DP_F_PLUS)  /* Do a sign (+/i) */
595       signvalue = '+';
596     else
597       if (flags & DP_F_SPACE)
598         signvalue = ' ';
599
600 #if 0
601   if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
602 #endif
603
604   intpart = ufvalue;
605
606   /* 
607    * Sorry, we only support 9 digits past the decimal because of our 
608    * conversion method
609    */
610   if (max > 9)
611     max = 9;
612
613   /* We "cheat" by converting the fractional part to integer by
614    * multiplying by a factor of 10
615    */
616   fracpart = round ((pow10 (max)) * (ufvalue - intpart));
617
618   if (fracpart >= pow10 (max))
619   {
620     intpart++;
621     fracpart -= pow10 (max);
622   }
623
624 #ifdef DEBUG_SNPRINTF
625   dprint (1, (debugfile, "fmtfp: %f =? %d.%d\n", fvalue, intpart, fracpart));
626 #endif
627
628   /* Convert integer part */
629   do {
630     iconvert[iplace++] =
631       (caps? "0123456789ABCDEF":"0123456789abcdef")[intpart % 10];
632     intpart = (intpart / 10);
633   } while(intpart && (iplace < 20));
634   if (iplace == 20) iplace--;
635   iconvert[iplace] = 0;
636
637   /* Convert fractional part */
638   do {
639     fconvert[fplace++] =
640       (caps? "0123456789ABCDEF":"0123456789abcdef")[fracpart % 10];
641     fracpart = (fracpart / 10);
642   } while(fracpart && (fplace < 20));
643   if (fplace == 20) fplace--;
644   fconvert[fplace] = 0;
645
646   /* -1 for decimal point, another -1 if we are printing a sign */
647   padlen = min - iplace - max - 1 - ((signvalue) ? 1 : 0); 
648   zpadlen = max - fplace;
649   if (zpadlen < 0)
650     zpadlen = 0;
651   if (padlen < 0) 
652     padlen = 0;
653   if (flags & DP_F_MINUS) 
654     padlen = -padlen; /* Left Justifty */
655
656   if ((flags & DP_F_ZERO) && (padlen > 0)) 
657   {
658     if (signvalue) 
659     {
660       dopr_outch (buffer, currlen, maxlen, signvalue);
661       --padlen;
662       signvalue = 0;
663     }
664     while (padlen > 0)
665     {
666       dopr_outch (buffer, currlen, maxlen, '0');
667       --padlen;
668     }
669   }
670   while (padlen > 0)
671   {
672     dopr_outch (buffer, currlen, maxlen, ' ');
673     --padlen;
674   }
675   if (signvalue) 
676     dopr_outch (buffer, currlen, maxlen, signvalue);
677
678   while (iplace > 0) 
679     dopr_outch (buffer, currlen, maxlen, iconvert[--iplace]);
680
681   /*
682    * Decimal point.  This should probably use locale to find the correct
683    * char to print out.
684    */
685   dopr_outch (buffer, currlen, maxlen, '.');
686
687   while (fplace > 0) 
688     dopr_outch (buffer, currlen, maxlen, fconvert[--fplace]);
689
690   while (zpadlen > 0)
691   {
692     dopr_outch (buffer, currlen, maxlen, '0');
693     --zpadlen;
694   }
695
696   while (padlen < 0) 
697   {
698     dopr_outch (buffer, currlen, maxlen, ' ');
699     ++padlen;
700   }
701 }
702
703 static void dopr_outch (char *buffer, size_t *currlen, size_t maxlen, char c)
704 {
705   if (*currlen < maxlen)
706     buffer[*currlen] = c;
707   (*currlen)++;
708 }
709 #endif /* !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) */
710
711 #ifndef HAVE_VSNPRINTF
712 int vsnprintf (char *str, size_t count, const char *fmt, va_list args)
713 {
714   str[0] = 0;
715   return(dopr(str, count, fmt, args));
716 }
717 #endif /* !HAVE_VSNPRINTF */
718
719 #ifndef HAVE_SNPRINTF
720 /* VARARGS3 */
721 #ifdef HAVE_STDARGS
722 int snprintf (char *str,size_t count,const char *fmt,...)
723 #else
724 int snprintf (va_alist) va_dcl
725 #endif
726 {
727 #ifndef HAVE_STDARGS
728   char *str;
729   size_t count;
730   char *fmt;
731 #endif
732   int len;
733   VA_LOCAL_DECL;
734     
735   VA_START (fmt);
736   VA_SHIFT (str, char *);
737   VA_SHIFT (count, size_t );
738   VA_SHIFT (fmt, char *);
739   len = vsnprintf(str, count, fmt, ap);
740   VA_END;
741   return(len);
742 }
743
744 #ifdef TEST_SNPRINTF
745 #ifndef LONG_STRING
746 #define LONG_STRING 1024
747 #endif
748 int main (void)
749 {
750   char buf1[LONG_STRING];
751   char buf2[LONG_STRING];
752   char *fp_fmt[] = {
753     "%-1.5f",
754     "%1.5f",
755     "%123.9f",
756     "%10.5f",
757     "% 10.5f",
758     "%+22.9f",
759     "%+4.9f",
760     "%01.3f",
761     "%4f",
762     "%3.1f",
763     "%3.2f",
764     NULL
765   };
766   double fp_nums[] = { -1.5, 134.21, 91340.2, 341.1234, 0203.9, 0.96, 0.996, 
767     0.9996, 1.996, 4.136, 0};
768   char *int_fmt[] = {
769     "%-1.5d",
770     "%1.5d",
771     "%123.9d",
772     "%5.5d",
773     "%10.5d",
774     "% 10.5d",
775     "%+22.33d",
776     "%01.3d",
777     "%4d",
778     NULL
779   };
780   long int_nums[] = { -1, 134, 91340, 341, 0203, 0};
781   int x, y;
782   int fail = 0;
783   int num = 0;
784
785   printf ("Testing snprintf format codes against system sprintf...\n");
786
787   for (x = 0; fp_fmt[x] != NULL ; x++)
788     for (y = 0; fp_nums[y] != 0 ; y++)
789     {
790       snprintf (buf1, sizeof (buf1), fp_fmt[x], fp_nums[y]);
791       sprintf (buf2, fp_fmt[x], fp_nums[y]);
792       if (strcmp (buf1, buf2))
793       {
794         printf("snprintf doesn't match Format: %s\n\tsnprintf = %s\n\tsprintf  = %s\n", /* __SPRINTF_CHECKED__ */
795             fp_fmt[x], buf1, buf2);
796         fail++;
797       }
798       num++;
799     }
800
801   for (x = 0; int_fmt[x] != NULL ; x++)
802     for (y = 0; int_nums[y] != 0 ; y++)
803     {
804       snprintf (buf1, sizeof (buf1), int_fmt[x], int_nums[y]);
805       sprintf (buf2, int_fmt[x], int_nums[y]);
806       if (strcmp (buf1, buf2))
807       {
808         printf("snprintf doesn't match Format: %s\n\tsnprintf = %s\n\tsprintf  = %s\n", /* __SPRINTF_CHECKED__ */
809             int_fmt[x], buf1, buf2);
810         fail++;
811       }
812       num++;
813     }
814   printf ("%d tests failed out of %d.\n", fail, num);
815 }
816 #endif /* SNPRINTF_TEST */
817
818 #endif /* !HAVE_SNPRINTF */