3 /* _PDCLIB_print( const char *, struct _PDCLIB_status_t * )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
15 /* Using an integer's bits as flags for both the conversion flags and length
18 /* FIXME: one too many flags to work on a 16-bit machine, join some (e.g. the
19 width flags) into a combined field.
31 #define E_intmax 1<<10
33 #define E_ptrdiff 1<<12
34 #define E_intptr 1<<13
35 #define E_ldouble 1<<14
37 #define E_unsigned 1<<16
39 /* This macro delivers a given character to either a memory buffer or a stream,
40 depending on the contents of 'status' (struct _PDCLIB_status_t).
41 x - the character to be delivered
42 i - pointer to number of characters already delivered in this call
43 n - pointer to maximum number of characters to be delivered in this call
44 s - the buffer into which the character shall be delivered
45 TODO: ref. fputs() for a better way to buffer handling
47 #define DELIVER( x ) \
49 if ( status->i < status->n ) { \
50 if ( status->stream != NULL ) \
51 putc( x, status->stream ); \
53 status->s[status->i] = x; \
58 /* This function recursively converts a given integer value to a character
59 stream. The conversion is done under the control of a given status struct
60 and written either to a character string or a stream, depending on that
61 same status struct. The status struct also keeps the function from exceeding
62 snprintf() limits, and enables any necessary padding / prefixing of the
63 output once the number of characters to be printed is known, which happens
64 at the lowermost recursion level.
66 static void int2base( intmax_t value, struct _PDCLIB_status_t * status )
68 /* Registering the character being printed at the end of the function here
69 already so it will be taken into account when the deepestmost recursion
70 does the prefix / padding stuff.
73 if ( ( value / status->base ) != 0 )
75 /* More digits to be done - recurse deeper */
76 int2base( value / status->base, status );
80 /* We reached the last digit, the deepest point of our recursion, and
81 only now know how long the number to be printed actually is. Now we
82 have to do the sign, prefix, width, and precision padding stuff
83 before printing the numbers while we resurface from the recursion.
85 /* At worst, we need two prefix characters (hex prefix). */
86 char preface[3] = "\0";
88 if ( ( status->flags & E_alt ) && ( status->base == 16 || status->base == 8 ) )
90 /* Octal / hexadecimal prefix for "%#" conversions */
91 preface[ preidx++ ] = '0';
92 if ( status->base == 16 )
94 preface[ preidx++ ] = ( status->flags & E_lower ) ? 'x' : 'X';
99 /* Negative sign for negative values - at all times. */
100 preface[ preidx++ ] = '-';
102 else if ( ! ( status->flags & E_unsigned ) )
104 /* plus sign / extra space are only for unsigned conversions */
105 if ( status->flags & E_plus )
107 preface[ preidx++ ] = '+';
109 else if ( status->flags & E_space )
111 preface[ preidx++ ] = ' ';
115 size_t prec_pads = ( status->prec > status->current ) ? ( status->prec - status->current ) : 0;
116 if ( ! ( status->flags & ( E_minus | E_zero ) ) )
118 /* Space padding is only done if no zero padding or left alignment
119 is requested. Leave space for any prefixes determined above.
121 /* The number of characters to be printed, plus prefixes if any. */
122 /* This line contained probably the most stupid, time-wasting bug
123 I've ever perpetrated. Greetings to Samface, DevL, and all
124 sceners at Breakpoint 2006.
126 size_t characters = preidx + ( ( status->current > status->prec ) ? status->current : status->prec );
127 if ( status->width > characters )
129 for ( size_t i = 0; i < status->width - characters; ++i )
135 if ( status->i < status->n )
137 if ( status->stream != 0 )
140 status->stream->buffer[status->stream->bufidx++] = (char)' ',
141 if ( ( status->stream->bufidx == status->stream->bufsize )
142 || ( ( status->stream->status & 2 ) && (char)' ' == '\n' )
143 || ( status->stream->status & 4 ) )
144 fflush( status->stream )
147 else status->s[status->i] = ' ';
156 /* Now we did the padding, do the prefixes (if any). */
158 while ( preface[ preidx ] != '\0' )
160 DELIVER( preface[ preidx++ ] );
163 if ( ( ! ( status->flags & E_minus ) ) && ( status->flags & E_zero ) )
165 /* If field is not left aligned, and zero padding is requested, do
168 while ( status->current < status->width )
174 /* Do the precision padding if necessary. */
175 for ( size_t i = 0; i < prec_pads; ++i )
181 /* Recursion tail - print the current digit. */
183 int digit = value % status->base;
188 if ( status->flags & E_lower )
190 /* Lowercase letters. Same array used for strto...(). */
191 DELIVER( _PDCLIB_digits[ digit ] );
195 /* Uppercase letters. Array only used here, only 0-F. */
196 DELIVER( _PDCLIB_Xdigits[ digit ] );
201 const char * _PDCLIB_print( const char * spec, struct _PDCLIB_status_t * status )
203 const char * orig_spec = spec;
204 if ( *(++spec) == '%' )
206 /* %% -> print single '%' */
210 /* Initializing status structure */
217 /* First come 0..n flags */
223 /* left-aligned output */
224 status->flags |= E_minus;
228 /* positive numbers prefixed with '+' */
229 status->flags |= E_plus;
233 /* alternative format (leading 0x for hex, 0 for octal) */
234 status->flags |= E_alt;
238 /* positive numbers prefixed with ' ' */
239 status->flags |= E_space;
243 /* right-aligned padding done with '0' instead of ' ' */
244 status->flags |= E_zero;
248 /* not a flag, exit flag parsing */
249 status->flags |= E_done;
252 } while ( ! ( status->flags & E_done ) );
254 /* Optional field width */
257 /* Retrieve width value from argument stack */
258 int width = va_arg( status->arg, int );
261 status->flags |= E_minus;
262 status->width = abs( width );
266 status->width = width;
272 /* If a width is given, strtol() will return its value. If not given,
273 strtol() will return zero. In both cases, endptr will point to the
274 rest of the conversion specifier - just what we need.
276 status->width = (int)strtol( spec, (char**)&spec, 10 );
279 /* Optional precision */
285 /* Retrieve precision value from argument stack. A negative value
286 is as if no precision is given - as precision is initalized to
287 EOF (negative), there is no need for testing for negative here.
289 status->prec = va_arg( status->arg, int );
294 status->prec = (int)strtol( spec, &endptr, 10 );
295 if ( spec == endptr )
297 /* Decimal point but no number - bad conversion specifier. */
302 /* Having a precision cancels out any zero flag. */
303 status->flags ^= E_zero;
306 /* Optional length modifier
307 We step one character ahead in any case, and step back only if we find
308 there has been no length modifier (or step ahead another character if it
309 has been "hh" or "ll").
317 status->flags |= E_char;
323 status->flags |= E_short;
329 /* ll -> long long */
330 status->flags |= E_llong;
336 status->flags |= E_long;
340 /* j -> intmax_t, which might or might not be long long */
341 status->flags |= E_intmax;
344 /* z -> size_t, which might or might not be unsigned int */
345 status->flags |= E_size;
348 /* t -> ptrdiff_t, which might or might not be long */
349 status->flags |= E_ptrdiff;
352 /* L -> long double */
353 status->flags |= E_ldouble;
360 /* Conversion specifier */
370 status->flags |= E_unsigned;
374 status->flags |= E_unsigned;
378 status->flags |= ( E_lower | E_unsigned );
382 status->flags |= E_unsigned;
395 /* TODO: Flags, wide chars. */
396 DELIVER( va_arg( status->arg, int ) );
399 /* TODO: Flags, wide chars. */
401 char * s = va_arg( status->arg, char * );
409 /* TODO: E_long -> E_intptr */
411 status->flags |= ( E_lower | E_unsigned | E_alt | E_long );
415 int * val = va_arg( status->arg, int * );
420 /* No conversion specifier. Bad conversion. */
424 /* Do the actual output based on our findings */
425 if ( status->base != 0 )
427 /* Integer conversions */
428 /* TODO: Check for invalid flag combinations. */
429 if ( status->flags & E_unsigned )
432 switch ( status->flags & ( E_char | E_short | E_long | E_llong | E_size ) )
435 value = (uintmax_t)(unsigned char)va_arg( status->arg, int );
438 value = (uintmax_t)(unsigned short)va_arg( status->arg, int );
441 value = (uintmax_t)va_arg( status->arg, unsigned int );
444 value = (uintmax_t)va_arg( status->arg, unsigned long );
447 value = (uintmax_t)va_arg( status->arg, unsigned long long );
450 value = (uintmax_t)va_arg( status->arg, size_t );
454 if ( ( value / status->base ) != 0 )
456 int2base( (intmax_t)(value / status->base), status );
458 int digit = value % status->base;
463 if ( status->flags & E_lower )
465 DELIVER( _PDCLIB_digits[ digit ] );
469 DELIVER( _PDCLIB_Xdigits[ digit ] );
474 switch ( status->flags & ( E_char | E_short | E_long | E_llong | E_intmax ) )
477 int2base( (intmax_t)(char)va_arg( status->arg, int ), status );
480 int2base( (intmax_t)(short)va_arg( status->arg, int ), status );
483 int2base( (intmax_t)va_arg( status->arg, int ), status );
486 int2base( (intmax_t)va_arg( status->arg, long ), status );
489 int2base( (intmax_t)va_arg( status->arg, long long ), status );
492 int2base( (intmax_t)va_arg( status->arg, ptrdiff_t ), status );
495 int2base( va_arg( status->arg, intmax_t ), status );
499 if ( status->flags & E_minus )
501 while ( status->current < status->width )
507 if ( status->i >= status->n )
509 status->s[status->n - 1] = '\0';
516 #include <_PDCLIB_test.h>
521 static int testprintf( char * buffer, size_t n, const char * format, ... )
523 /* Members: base, flags, n, i, current, s, width, prec, stream, arg */
524 struct _PDCLIB_status_t status;
533 status.stream = NULL;
534 va_start( status.arg, format );
535 memset( buffer, '\0', 100 );
536 if ( *(_PDCLIB_print( format, &status )) != '\0' )
538 printf( "_PDCLIB_print() did not return end-of-specifier on '%s'.\n", format );
541 va_end( status.arg );
548 TESTCASE( testprintf( buffer, 100, "%hhd", CHAR_MIN ) == 4 );
549 TESTCASE( strcmp( buffer, "-128" ) == 0 );
550 TESTCASE( testprintf( buffer, 100, "%hhd", CHAR_MAX ) == 3 );
551 TESTCASE( strcmp( buffer, "127" ) == 0 );
552 TESTCASE( testprintf( buffer, 100, "%hhd", 0 ) == 1 );
553 TESTCASE( strcmp( buffer, "0" ) == 0 );
554 TESTCASE( testprintf( buffer, 100, "%hd", SHRT_MIN ) == 6 );
555 TESTCASE( strcmp( buffer, "-32768" ) == 0 );
556 TESTCASE( testprintf( buffer, 100, "%hd", SHRT_MAX ) == 5 );
557 TESTCASE( strcmp( buffer, "32767" ) == 0 );
558 TESTCASE( testprintf( buffer, 100, "%hd", 0 ) == 1 );
559 TESTCASE( strcmp( buffer, "0" ) == 0 );
560 TESTCASE( testprintf( buffer, 100, "%d", INT_MIN ) == 11 );
561 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
562 TESTCASE( testprintf( buffer, 100, "%d", INT_MAX ) == 10 );
563 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
564 TESTCASE( testprintf( buffer, 100, "%d", 0 ) == 1 );
565 TESTCASE( strcmp( buffer, "0" ) == 0 );
566 TESTCASE( testprintf( buffer, 100, "%ld", LONG_MIN ) == 11 );
567 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
568 TESTCASE( testprintf( buffer, 100, "%ld", LONG_MAX ) == 10 );
569 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
570 TESTCASE( testprintf( buffer, 100, "%ld", 0l ) == 1 );
571 TESTCASE( strcmp( buffer, "0" ) == 0 );
572 TESTCASE( testprintf( buffer, 100, "%lld", LLONG_MIN ) == 20 );
573 TESTCASE( strcmp( buffer, "-9223372036854775808" ) == 0 );
574 TESTCASE( testprintf( buffer, 100, "%lld", LLONG_MAX ) == 19 );
575 TESTCASE( strcmp( buffer, "9223372036854775807" ) == 0 );
576 TESTCASE( testprintf( buffer, 100, "%lld", 0ll ) );
577 TESTCASE( strcmp( buffer, "0" ) == 0 );
578 TESTCASE( testprintf( buffer, 100, "%hhu", UCHAR_MAX ) == 3 );
579 TESTCASE( strcmp( buffer, "255" ) == 0 );
580 TESTCASE( testprintf( buffer, 100, "%hhu", (unsigned char)-1 ) == 3 );
581 TESTCASE( strcmp( buffer, "255" ) == 0 );
582 TESTCASE( testprintf( buffer, 100, "%hu", USHRT_MAX ) == 5 );
583 TESTCASE( strcmp( buffer, "65535" ) == 0 );
584 TESTCASE( testprintf( buffer, 100, "%hu", (unsigned short)-1 ) == 5 );
585 TESTCASE( strcmp( buffer, "65535" ) == 0 );
586 TESTCASE( testprintf( buffer, 100, "%u", UINT_MAX ) == 10 );
587 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
588 TESTCASE( testprintf( buffer, 100, "%u", -1u ) == 10 );
589 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
590 TESTCASE( testprintf( buffer, 100, "%lu", ULONG_MAX ) == 10 );
591 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
592 TESTCASE( testprintf( buffer, 100, "%lu", -1ul ) == 10 );
593 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
594 TESTCASE( testprintf( buffer, 100, "%llu", ULLONG_MAX ) == 20 );
595 TESTCASE( strcmp( buffer, "18446744073709551615" ) == 0 );
596 TESTCASE( testprintf( buffer, 100, "%llu", -1ull ) == 20 );
597 TESTCASE( strcmp( buffer, "18446744073709551615" ) == 0 );
598 TESTCASE( testprintf( buffer, 100, "%X", UINT_MAX ) == 8 );
599 TESTCASE( strcmp( buffer, "FFFFFFFF" ) == 0 );
600 TESTCASE( testprintf( buffer, 100, "%#X", -1u ) == 10 );
601 TESTCASE( strcmp( buffer, "0XFFFFFFFF" ) == 0 );
602 TESTCASE( testprintf( buffer, 100, "%x", UINT_MAX ) == 8 );
603 TESTCASE( strcmp( buffer, "ffffffff" ) == 0 );
604 TESTCASE( testprintf( buffer, 100, "%#x", -1u ) == 10 );
605 TESTCASE( strcmp( buffer, "0xffffffff" ) == 0 );
606 TESTCASE( testprintf( buffer, 100, "%o", UINT_MAX ) == 11 );
607 TESTCASE( strcmp( buffer, "37777777777" ) == 0 );
608 TESTCASE( testprintf( buffer, 100, "%#o", -1u ) == 12 );
609 TESTCASE( strcmp( buffer, "037777777777" ) == 0 );
610 TESTCASE( testprintf( buffer, 100, "%+d", INT_MIN ) == 11 );
611 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
612 TESTCASE( testprintf( buffer, 100, "%+d", INT_MAX ) == 11 );
613 TESTCASE( strcmp( buffer, "+2147483647" ) == 0 );
614 TESTCASE( testprintf( buffer, 100, "%+d", 0 ) == 2 );
615 TESTCASE( strcmp( buffer, "+0" ) == 0 );
616 TESTCASE( testprintf( buffer, 100, "%+u", UINT_MAX ) == 10 );
617 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
618 TESTCASE( testprintf( buffer, 100, "%+u", -1u ) == 10 );
619 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
620 TESTCASE( testprintf( buffer, 100, "% d", INT_MIN ) == 11 );
621 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
622 TESTCASE( testprintf( buffer, 100, "% d", INT_MAX ) == 11 );
623 TESTCASE( strcmp( buffer, " 2147483647" ) == 0 );
624 TESTCASE( testprintf( buffer, 100, "% d", 0 ) == 2 );
625 TESTCASE( strcmp( buffer, " 0" ) == 0 );
626 TESTCASE( testprintf( buffer, 100, "% u", UINT_MAX ) == 10 );
627 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
628 TESTCASE( testprintf( buffer, 100, "% u", -1u ) == 10 );
629 TESTCASE( strcmp( buffer, "4294967295" ) == 0 );
630 TESTCASE( testprintf( buffer, 100, "%9d", INT_MIN ) == 11 );
631 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
632 TESTCASE( testprintf( buffer, 100, "%9d", INT_MAX ) == 10 );
633 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
634 TESTCASE( testprintf( buffer, 100, "%10d", INT_MIN ) == 11 );
635 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
636 TESTCASE( testprintf( buffer, 100, "%10d", INT_MAX ) == 10 );
637 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
638 TESTCASE( testprintf( buffer, 100, "%11d", INT_MIN ) == 11 );
639 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
640 TESTCASE( testprintf( buffer, 100, "%11d", INT_MAX ) == 11 );
641 TESTCASE( strcmp( buffer, " 2147483647" ) == 0 );
642 TESTCASE( testprintf( buffer, 100, "%12d", INT_MIN ) == 12 );
643 TESTCASE( strcmp( buffer, " -2147483648" ) == 0 );
644 TESTCASE( testprintf( buffer, 100, "%12d", INT_MAX ) == 12 );
645 TESTCASE( strcmp( buffer, " 2147483647" ) == 0 );
646 TESTCASE( testprintf( buffer, 100, "%-9d", INT_MIN ) == 11 );
647 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
648 TESTCASE( testprintf( buffer, 100, "%-9d", INT_MAX ) == 10 );
649 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
650 TESTCASE( testprintf( buffer, 100, "%-10d", INT_MIN ) == 11 );
651 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
652 TESTCASE( testprintf( buffer, 100, "%-10d", INT_MAX ) == 10 );
653 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
654 TESTCASE( testprintf( buffer, 100, "%-11d", INT_MIN ) == 11 );
655 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
656 TESTCASE( testprintf( buffer, 100, "%-11d", INT_MAX ) == 11 );
657 TESTCASE( strcmp( buffer, "2147483647 " ) == 0 );
658 TESTCASE( testprintf( buffer, 100, "%-12d", INT_MIN ) == 12 );
659 TESTCASE( strcmp( buffer, "-2147483648 " ) == 0 );
660 TESTCASE( testprintf( buffer, 100, "%-12d", INT_MAX ) == 12 );
661 TESTCASE( strcmp( buffer, "2147483647 " ) == 0 );
662 TESTCASE( testprintf( buffer, 100, "%09d", INT_MIN ) == 11 );
663 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
664 TESTCASE( testprintf( buffer, 100, "%09d", INT_MAX ) == 10 );
665 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
666 TESTCASE( testprintf( buffer, 100, "%010d", INT_MIN ) == 11 );
667 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
668 TESTCASE( testprintf( buffer, 100, "%010d", INT_MAX ) == 10 );
669 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
670 TESTCASE( testprintf( buffer, 100, "%011d", INT_MIN ) == 11 );
671 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
672 TESTCASE( testprintf( buffer, 100, "%011d", INT_MAX ) == 11 );
673 TESTCASE( strcmp( buffer, "02147483647" ) == 0 );
674 TESTCASE( testprintf( buffer, 100, "%012d", INT_MIN ) == 12 );
675 TESTCASE( strcmp( buffer, "-02147483648" ) == 0 );
676 TESTCASE( testprintf( buffer, 100, "%012d", INT_MAX ) == 12 );
677 TESTCASE( strcmp( buffer, "002147483647" ) == 0 );
678 TESTCASE( testprintf( buffer, 100, "%-09d", INT_MIN ) == 11 );
679 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
680 TESTCASE( testprintf( buffer, 100, "%-09d", INT_MAX ) == 10 );
681 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
682 TESTCASE( testprintf( buffer, 100, "%-010d", INT_MIN ) == 11 );
683 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
684 TESTCASE( testprintf( buffer, 100, "%-010d", INT_MAX ) == 10 );
685 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
686 TESTCASE( testprintf( buffer, 100, "%-011d", INT_MIN ) == 11 );
687 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
688 TESTCASE( testprintf( buffer, 100, "%-011d", INT_MAX ) == 11 );
689 TESTCASE( strcmp( buffer, "2147483647 " ) == 0 );
690 TESTCASE( testprintf( buffer, 100, "%-012d", INT_MIN ) == 12 );
691 TESTCASE( strcmp( buffer, "-2147483648 " ) == 0 );
692 TESTCASE( testprintf( buffer, 100, "%-012d", INT_MAX ) == 12 );
693 TESTCASE( strcmp( buffer, "2147483647 " ) == 0 );
694 TESTCASE( testprintf( buffer, 8, "%9d", INT_MAX ) == 10 );
695 TESTCASE( strcmp( buffer, "2147483" ) == 0 );
696 TESTCASE( testprintf( buffer, 8, "%9d", INT_MIN ) == 11 );
697 TESTCASE( strcmp( buffer, "-214748" ) == 0 );
698 TESTCASE( testprintf( buffer, 9, "%9d", INT_MAX ) == 10 );
699 TESTCASE( strcmp( buffer, "21474836" ) == 0 );
700 TESTCASE( testprintf( buffer, 9, "%9d", INT_MIN ) == 11 );
701 TESTCASE( strcmp( buffer, "-2147483" ) == 0 );
702 TESTCASE( testprintf( buffer, 10, "%9d", INT_MAX ) == 10 );
703 TESTCASE( strcmp( buffer, "214748364" ) == 0 );
704 TESTCASE( testprintf( buffer, 10, "%9d", INT_MIN ) == 11 );
705 TESTCASE( strcmp( buffer, "-21474836" ) == 0 );
706 TESTCASE( testprintf( buffer, 9, "%10d", INT_MAX ) == 10 );
707 TESTCASE( strcmp( buffer, "21474836" ) == 0 );
708 TESTCASE( testprintf( buffer, 9, "%10d", INT_MIN ) == 11 );
709 TESTCASE( strcmp( buffer, "-2147483" ) == 0 );
710 TESTCASE( testprintf( buffer, 10, "%10d", INT_MAX ) == 10 );
711 TESTCASE( strcmp( buffer, "214748364" ) == 0 );
712 TESTCASE( testprintf( buffer, 10, "%10d", INT_MIN ) == 11 );
713 TESTCASE( strcmp( buffer, "-21474836" ) == 0 );
714 TESTCASE( testprintf( buffer, 11, "%10d", INT_MAX ) == 10 );
715 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
716 TESTCASE( testprintf( buffer, 11, "%10d", INT_MIN ) == 11 );
717 TESTCASE( strcmp( buffer, "-214748364" ) == 0 );
718 TESTCASE( testprintf( buffer, 10, "%11d", INT_MAX ) == 11 );
719 TESTCASE( strcmp( buffer, " 21474836" ) == 0 );
720 TESTCASE( testprintf( buffer, 10, "%11d", INT_MIN ) == 11 );
721 TESTCASE( strcmp( buffer, "-21474836" ) == 0 );
722 TESTCASE( testprintf( buffer, 11, "%11d", INT_MAX ) == 11 );
723 TESTCASE( strcmp( buffer, " 214748364" ) == 0 );
724 TESTCASE( testprintf( buffer, 11, "%11d", INT_MIN ) == 11 );
725 TESTCASE( strcmp( buffer, "-214748364" ) == 0 );
726 TESTCASE( testprintf( buffer, 12, "%11d", INT_MAX ) == 11 );
727 TESTCASE( strcmp( buffer, " 2147483647" ) == 0 );
728 TESTCASE( testprintf( buffer, 12, "%11d", INT_MIN ) == 11 );
729 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
730 TESTCASE( testprintf( buffer, 11, "%12d", INT_MAX ) == 12 );
731 TESTCASE( strcmp( buffer, " 21474836" ) == 0 );
732 TESTCASE( testprintf( buffer, 11, "%12d", INT_MIN ) == 12 );
733 TESTCASE( strcmp( buffer, " -21474836" ) == 0 );
734 TESTCASE( testprintf( buffer, 12, "%12d", INT_MAX ) == 12 );
735 TESTCASE( strcmp( buffer, " 214748364" ) == 0 );
736 TESTCASE( testprintf( buffer, 12, "%12d", INT_MIN ) == 12 );
737 TESTCASE( strcmp( buffer, " -214748364" ) == 0 );
738 TESTCASE( testprintf( buffer, 13, "%12d", INT_MAX ) == 12 );
739 TESTCASE( strcmp( buffer, " 2147483647" ) == 0 );
740 TESTCASE( testprintf( buffer, 13, "%12d", INT_MIN ) == 12 );
741 TESTCASE( strcmp( buffer, " -2147483648" ) == 0 );
742 TESTCASE( testprintf( buffer, 100, "%030.20d", INT_MAX ) == 30 );
743 TESTCASE( strcmp( buffer, " 00000000002147483647" ) == 0 );
744 TESTCASE( testprintf( buffer, 100, "%.6x", UINT_MAX ) == 8 );
745 TESTCASE( strcmp( buffer, "ffffffff" ) == 0 );
746 TESTCASE( testprintf( buffer, 100, "%#6.3x", UINT_MAX ) == 10 );
747 TESTCASE( strcmp( buffer, "0xffffffff" ) == 0 );
748 TESTCASE( testprintf( buffer, 100, "%#3.6x", UINT_MAX ) == 10 );
749 TESTCASE( strcmp( buffer, "0xffffffff" ) == 0 );
750 TESTCASE( testprintf( buffer, 100, "%.6d", INT_MIN ) == 11 );
751 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
752 TESTCASE( testprintf( buffer, 100, "%6.3d", INT_MIN ) == 11 );
753 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
754 TESTCASE( testprintf( buffer, 100, "%3.6d", INT_MIN ) == 11 );
755 TESTCASE( strcmp( buffer, "-2147483648" ) == 0 );
756 TESTCASE( testprintf( buffer, 100, "%#0.6x", UINT_MAX ) == 10 );
757 TESTCASE( strcmp( buffer, "0xffffffff" ) == 0 );
758 TESTCASE( testprintf( buffer, 100, "%#06.3x", UINT_MAX ) == 10 );
759 TESTCASE( strcmp( buffer, "0xffffffff" ) == 0 );
760 TESTCASE( testprintf( buffer, 100, "%#03.6x", UINT_MAX ) == 10 );
761 TESTCASE( strcmp( buffer, "0xffffffff" ) == 0 );
762 TESTCASE( testprintf( buffer, 100, "%#0.6d", INT_MAX ) == 10 );
763 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
764 TESTCASE( testprintf( buffer, 100, "%#06.3d", INT_MAX ) == 10 );
765 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
766 TESTCASE( testprintf( buffer, 100, "%#03.6d", INT_MAX ) == 10 );
767 TESTCASE( strcmp( buffer, "2147483647" ) == 0 );
768 TESTCASE( testprintf( buffer, 100, "%#+.6d", INT_MAX ) == 11 );
769 TESTCASE( strcmp( buffer, "+2147483647" ) == 0 );
770 TESTCASE( testprintf( buffer, 100, "%#+6.3d", INT_MAX ) == 11 );
771 TESTCASE( strcmp( buffer, "+2147483647" ) == 0 );
772 TESTCASE( testprintf( buffer, 100, "%#+3.6d", INT_MAX ) == 11 );
773 TESTCASE( strcmp( buffer, "+2147483647" ) == 0 );
774 TESTCASE( testprintf( buffer, 100, "%+0.6d", INT_MAX ) == 11 );
775 TESTCASE( strcmp( buffer, "+2147483647" ) == 0 );
776 TESTCASE( testprintf( buffer, 100, "%+06.3d", INT_MAX ) == 11 );
777 TESTCASE( strcmp( buffer, "+2147483647" ) == 0 );
778 TESTCASE( testprintf( buffer, 100, "%+03.6d", INT_MAX ) == 11 );
779 TESTCASE( strcmp( buffer, "+2147483647" ) == 0 );
780 TESTCASE( testprintf( buffer, 100, "%c", 'x' ) == 1 );
781 TESTCASE( strcmp( buffer, "x" ) == 0 );
782 TESTCASE( testprintf( buffer, 100, "%s", "abcdef" ) == 6 );
783 TESTCASE( strcmp( buffer, "abcdef" ) == 0 );
784 TESTCASE( testprintf( buffer, 100, "%p", (void *)0xdeadbeef ) == 10 );
785 TESTCASE( strcmp( buffer, "0xdeadbeef" ) == 0 );