CXX peace: src/pre-grn/hgraph.cpp
[s-roff.git] / src / lib-snprintf / snprintf.c
blob67771fe54e1e8b2261c5f4a1a16fa95a36db7e2d
1 /*
2 * snprintf.c - a portable implementation of snprintf
4 * AUTHOR
5 * Mark Martinec <mark.martinec@ijs.si>, April 1999.
7 * Copyright 1999-2002 Mark Martinec. All rights reserved.
9 * TERMS AND CONDITIONS
10 * This program is free software; it is dual licensed, the terms of the
11 * "Frontier Artistic License" or the "GNU General Public License"
12 * can be chosen at your discretion. The chosen license then applies
13 * solely and in its entirety. Both licenses come with this Kit.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty
17 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 * See the license for more details.
20 * You should have received a copy of the "Frontier Artistic License"
21 * with this Kit in the file named LICENSE.txt, and the copy of
22 * the "GNU General Public License" in the file named LICENSE-GPL.txt.
23 * If not, I'll be glad to provide one.
25 * FEATURES
26 * - careful adherence to specs regarding flags, field width and precision;
27 * - good performance for large string handling (large format, large
28 * argument or large paddings). Performance is similar to system's sprintf
29 * and in several cases significantly better (make sure you compile with
30 * optimizations turned on, tell the compiler the code is strict ANSI
31 * if necessary to give it more freedom for optimizations);
32 * - return value semantics per ISO/IEC 9899:1999 ("ISO C99");
33 * - written in standard ISO/ANSI C - requires an ANSI C compiler;
34 * - works also with non-ASCII 8-bit character sets (e.g. EBCDIC)
35 * provided strings are '\0'-terminated.
37 * SUPPORTED CONVERSION SPECIFIERS AND DATA TYPES
39 * This snprintf only supports the following conversion specifiers:
40 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
41 * with flags: '-', '+', ' ', '0' and '#'.
42 * An asterisk is supported for field width and for the precision.
44 * Length modifiers 'h' (short int), 'l' (long int),
45 * and 'll' (long long int) are supported.
46 * NOTE:
47 * If macro SNPRINTF_LONGLONG_SUPPORT is not defined (default) the
48 * length modifier 'll' is recognized but treated the same as 'l',
49 * which may cause argument value truncation! Defining
50 * SNPRINTF_LONGLONG_SUPPORT requires that your system's sprintf also
51 * handles length modifier 'll'. long long int is a language extension
52 * which may not be portable.
54 * Conversion of numeric data (conversion specifiers d, u, o, x, X, p)
55 * with length modifiers (none or h, l, ll) is left to the system routine
56 * sprintf, but all handling of flags, field width and precision as well as
57 * c and s conversions is done very carefully by this portable routine.
58 * If a string precision (truncation) is specified (e.g. %.8s) it is
59 * guaranteed the string beyond the specified precision will not be referenced.
61 * Length modifiers h, l and ll are ignored for c and s conversions (data
62 * types wint_t and wchar_t are not supported).
64 * The following common synonyms for conversion characters are supported:
65 * - i is a synonym for d
66 * - D is a synonym for ld, explicit length modifiers are ignored
67 * - U is a synonym for lu, explicit length modifiers are ignored
68 * - O is a synonym for lo, explicit length modifiers are ignored
69 * The D, O and U conversion characters are nonstandard, they are supported
70 * for backward compatibility only, and should not be used for new code.
72 * The following is specifically NOT supported:
73 * - flag ' (thousands' grouping character) is recognized but ignored
74 * - numeric conversion specifiers: f, e, E, g, G and synonym F,
75 * as well as the new a and A conversion specifiers
76 * - length modifier 'L' (long double) and 'q' (quad - use 'll' instead)
77 * - wide character/string conversions: lc, ls, and nonstandard
78 * synonyms C and S
79 * - writeback of converted string length: conversion character n
80 * - the n$ specification for direct reference to n-th argument
81 * - locales
83 * It is permitted for str_m to be zero, and it is permitted to specify NULL
84 * pointer for resulting string argument if str_m is zero (as per ISO C99).
86 * The return value is the number of characters which would be generated
87 * for the given input, excluding the trailing null. If this value
88 * is greater or equal to str_m, not all characters from the result
89 * have been stored in str, output bytes beyond the (str_m-1) -th character
90 * are discarded. If str_m is greater than zero it is guaranteed
91 * the resulting string will be null-terminated.
93 * NOTE that this matches the ISO C99, OpenBSD, and GNU C library 2.1,
94 * but is different from some older and vendor implementations,
95 * and is also different from XPG, XSH5, SUSv2 specifications.
96 * For historical discussion on changes in the semantics and standards
97 * of snprintf see printf(3) man page in the Linux programmers manual.
99 * Routines asprintf and vasprintf return a pointer (in the ptr argument)
100 * to a buffer sufficiently large to hold the resulting string. This pointer
101 * should be passed to free(3) to release the allocated storage when it is
102 * no longer needed. If sufficient space cannot be allocated, these functions
103 * will return -1 and set ptr to be a NULL pointer. These two routines are a
104 * GNU C library extensions (glibc).
106 * Routines asnprintf and vasnprintf are similar to asprintf and vasprintf,
107 * yet, like snprintf and vsnprintf counterparts, will write at most str_m-1
108 * characters into the allocated output string, the last character in the
109 * allocated buffer then gets the terminating null. If the formatted string
110 * length (the return value) is greater than or equal to the str_m argument,
111 * the resulting string was truncated and some of the formatted characters
112 * were discarded. These routines present a handy way to limit the amount
113 * of allocated memory to some sane value.
115 * AVAILABILITY
116 * http://www.ijs.si/software/snprintf/
118 * REVISION HISTORY
119 * 1999-04 V0.9 Mark Martinec
120 * - initial version, some modifications after comparing printf
121 * man pages for Digital Unix 4.0, Solaris 2.6 and HPUX 10,
122 * and checking how Perl handles sprintf (differently!);
123 * 1999-04-09 V1.0 Mark Martinec <mark.martinec@ijs.si>
124 * - added main test program, fixed remaining inconsistencies,
125 * added optional (long long int) support;
126 * 1999-04-12 V1.1 Mark Martinec <mark.martinec@ijs.si>
127 * - support the 'p' conversion (pointer to void);
128 * - if a string precision is specified
129 * make sure the string beyond the specified precision
130 * will not be referenced (e.g. by strlen);
131 * 1999-04-13 V1.2 Mark Martinec <mark.martinec@ijs.si>
132 * - support synonyms %D=%ld, %U=%lu, %O=%lo;
133 * - speed up the case of long format string with few conversions;
134 * 1999-06-30 V1.3 Mark Martinec <mark.martinec@ijs.si>
135 * - fixed runaway loop (eventually crashing when str_l wraps
136 * beyond 2^31) while copying format string without
137 * conversion specifiers to a buffer that is too short
138 * (thanks to Edwin Young <edwiny@autonomy.com> for
139 * spotting the problem);
140 * - added macros PORTABLE_SNPRINTF_VERSION_(MAJOR|MINOR)
141 * to snprintf.h
142 * 2000-02-14 V2.0 (never released) Mark Martinec <mark.martinec@ijs.si>
143 * - relaxed license terms: The Artistic License now applies.
144 * You may still apply the GNU GENERAL PUBLIC LICENSE
145 * as was distributed with previous versions, if you prefer;
146 * - changed REVISION HISTORY dates to use ISO 8601 date format;
147 * - added vsnprintf (patch also independently proposed by
148 * Caolan McNamara 2000-05-04, and Keith M Willenson 2000-06-01)
149 * 2000-06-27 V2.1 Mark Martinec <mark.martinec@ijs.si>
150 * - removed POSIX check for str_m<1; value 0 for str_m is
151 * allowed by ISO C99 (and GNU C library 2.1) - (pointed out
152 * on 2000-05-04 by Caolan McNamara, caolan@ csn dot ul dot ie).
153 * Besides relaxed license this change in standards adherence
154 * is the main reason to bump up the major version number;
155 * - added nonstandard routines asnprintf, vasnprintf, asprintf,
156 * vasprintf that dynamically allocate storage for the
157 * resulting string; these routines are not compiled by default,
158 * see comments where NEED_V?ASN?PRINTF macros are defined;
159 * - autoconf contributed by Caolan McNamara
160 * 2000-10-06 V2.2 Mark Martinec <mark.martinec@ijs.si>
161 * - BUG FIX: the %c conversion used a temporary variable
162 * that was no longer in scope when referenced,
163 * possibly causing incorrect resulting character;
164 * - BUG FIX: make precision and minimal field width unsigned
165 * to handle huge values (2^31 <= n < 2^32) correctly;
166 * also be more careful in the use of signed/unsigned/size_t
167 * internal variables - probably more careful than many
168 * vendor implementations, but there may still be a case
169 * where huge values of str_m, precision or minimal field
170 * could cause incorrect behaviour;
171 * - use separate variables for signed/unsigned arguments,
172 * and for short/int, long, and long long argument lengths
173 * to avoid possible incompatibilities on certain
174 * computer architectures. Also use separate variable
175 * arg_sign to hold sign of a numeric argument,
176 * to make code more transparent;
177 * - some fiddling with zero padding and "0x" to make it
178 * Linux compatible;
179 * - systematically use macros fast_memcpy and fast_memset
180 * instead of case-by-case hand optimization; determine some
181 * breakeven string lengths for different architectures;
182 * - terminology change: 'format' -> 'conversion specifier',
183 * 'C9x' -> 'ISO/IEC 9899:1999 ("ISO C99")',
184 * 'alternative form' -> 'alternate form',
185 * 'data type modifier' -> 'length modifier';
186 * - several comments rephrased and new ones added;
187 * - make compiler not complain about 'credits' defined but
188 * not used;
189 * 2001-08 V2.3 Mark Martinec <mark.martinec@ijs.si>
190 * .. 2002-02 - writeback conversion specifier 'n' is now supported;
191 * - bump the size of a temporary buffer for simple
192 * numeric->string conversion from 32 to 48 characters
193 * in anticipation of 128-bit machines;
194 * - added #include <stddef.h> and <stdarg.h> to snprintf.h;
195 * - fixed one assert in test.c
196 * (thanks to Tuomo A Turunen for reporting this problem);
197 * - portability fix: use isdigit() provided with <ctype.h>
198 * and do not assume character set is ASCII - call strtoul()
199 * if needed to convert field width and precision;
200 * - check for broken or non-ANSI native sprintf (e.g. SunOS)
201 * which does not return string lenth, and work around it;
202 * - shouldn't happen, but just in case (applies to numeric
203 * conversions only): added assertion after a call to
204 * system's sprintf to make sure we detect a problem
205 * as it happens (or very shortly - but still - after a
206 * buffer overflow occured for some strange reason
207 * in system's sprintf);
208 * - cleanup: avoid comparing signed and unsigned values
209 * (ANSI c++ complaint); added a couple of 'const' qualifiers;
210 * - changed few comments, new references to some other
211 * implementations added to the README file;
212 * - it appears the Artistic License and its variant the Frontier
213 * Artistic License are incompatible with GPL and precludes
214 * this work to be included with GPL-licensed work. This was
215 * not my intention. The fact that this package is dual licensed
216 * comes to the rescue. Changed the credits[] string, and
217 * TERMS AND CONDITIONS to explicitly say so, stressing
218 * the fact that this work is dual licensed.
222 /* Define HAVE_SNPRINTF if your system already has snprintf and vsnprintf.
224 * If HAVE_SNPRINTF is defined this module will not produce code for
225 * snprintf and vsnprintf, unless PREFER_PORTABLE_SNPRINTF is defined as well,
226 * causing this portable version of snprintf to be called portable_snprintf
227 * (and portable_vsnprintf).
229 /* #define HAVE_SNPRINTF */
231 /* Define PREFER_PORTABLE_SNPRINTF if your system does have snprintf and
232 * vsnprintf but you would prefer to use the portable routine(s) instead.
233 * In this case the portable routine is declared as portable_snprintf
234 * (and portable_vsnprintf) and a macro 'snprintf' (and 'vsnprintf')
235 * is defined to expand to 'portable_v?snprintf' - see file snprintf.h .
236 * Defining this macro is only useful if HAVE_SNPRINTF is also defined,
237 * but does no harm if defined nevertheless.
239 /* #define PREFER_PORTABLE_SNPRINTF */
241 /* Define SNPRINTF_LONGLONG_SUPPORT if you want to support
242 * data type (long long int) and length modifier 'll' (e.g. %lld).
243 * If undefined, 'll' is recognized but treated as a single 'l'.
245 * If the system's sprintf does not handle 'll'
246 * the SNPRINTF_LONGLONG_SUPPORT must not be defined!
248 * This is off by default as (long long int) is a language extension.
250 /* #define SNPRINTF_LONGLONG_SUPPORT */
252 /* Define NEED_SNPRINTF_ONLY if you only need snprintf, and not vsnprintf.
253 * If NEED_SNPRINTF_ONLY is defined, the snprintf will be defined directly,
254 * otherwise both snprintf and vsnprintf routines will be defined
255 * and snprintf will be a simple wrapper around vsnprintf, at the expense
256 * of an extra procedure call.
258 /* #define NEED_SNPRINTF_ONLY */
260 /* Define NEED_V?ASN?PRINTF macros if you need library extension
261 * routines asprintf, vasprintf, asnprintf, vasnprintf respectively,
262 * and your system library does not provide them. They are all small
263 * wrapper routines around portable_vsnprintf. Defining any of the four
264 * NEED_V?ASN?PRINTF macros automatically turns off NEED_SNPRINTF_ONLY
265 * and turns on PREFER_PORTABLE_SNPRINTF.
267 * Watch for name conflicts with the system library if these routines
268 * are already present there.
270 * NOTE: vasprintf and vasnprintf routines need va_copy() from stdarg.h, as
271 * specified by C99, to be able to traverse the same list of arguments twice.
272 * I don't know of any other standard and portable way of achieving the same.
273 * With some versions of gcc you may use __va_copy(). You might even get away
274 * with "ap2 = ap", in this case you must not call va_end(ap2) !
275 * #define va_copy(ap2,ap) __va_copy((ap2),(ap))
276 * #define va_copy(ap2,ap) (ap2) = (ap)
278 /* #define NEED_ASPRINTF */
279 /* #define NEED_ASNPRINTF */
280 /* #define NEED_VASPRINTF */
281 /* #define NEED_VASNPRINTF */
283 /* Define the following macros if desired:
284 * SOLARIS_COMPATIBLE, SOLARIS_BUG_COMPATIBLE,
285 * HPUX_COMPATIBLE, HPUX_BUG_COMPATIBLE, LINUX_COMPATIBLE,
286 * DIGITAL_UNIX_COMPATIBLE, DIGITAL_UNIX_BUG_COMPATIBLE,
287 * PERL_COMPATIBLE, PERL_BUG_COMPATIBLE,
289 * - For portable applications it is best not to rely on peculiarities
290 * of a given implementation so it may be best not to define any
291 * of the macros that select compatibility and to avoid features
292 * that vary among the systems.
294 * - Selecting compatibility with more than one operating system
295 * is not strictly forbidden but is not recommended.
297 * - 'x'_BUG_COMPATIBLE implies 'x'_COMPATIBLE .
299 * - 'x'_COMPATIBLE refers to (and enables) a behaviour that is
300 * documented in a sprintf man page on a given operating system
301 * and actually adhered to by the system's sprintf (but not on
302 * most other operating systems). It may also refer to and enable
303 * a behaviour that is declared 'undefined' or 'implementation specific'
304 * in the man page but a given implementation behaves predictably
305 * in a certain way.
307 * - 'x'_BUG_COMPATIBLE refers to (and enables) a behaviour of system's sprintf
308 * that contradicts the sprintf man page on the same operating system.
310 * - I do not claim that the 'x'_COMPATIBLE and 'x'_BUG_COMPATIBLE
311 * conditionals take into account all idiosyncrasies of a particular
312 * implementation, there may be other incompatibilities.
316 /* ============================================= */
317 /* NO USER SERVICABLE PARTS FOLLOWING THIS POINT */
318 /* ============================================= */
320 #define PORTABLE_SNPRINTF_VERSION_MAJOR 2
321 #define PORTABLE_SNPRINTF_VERSION_MINOR 3
323 #if defined(NEED_ASPRINTF) || defined(NEED_ASNPRINTF) || defined(NEED_VASPRINTF) || defined(NEED_VASNPRINTF)
324 # if defined(NEED_SNPRINTF_ONLY)
325 # undef NEED_SNPRINTF_ONLY
326 # endif
327 # if !defined(PREFER_PORTABLE_SNPRINTF)
328 # define PREFER_PORTABLE_SNPRINTF
329 # endif
330 #endif
332 #if defined(SOLARIS_BUG_COMPATIBLE) && !defined(SOLARIS_COMPATIBLE)
333 #define SOLARIS_COMPATIBLE
334 #endif
336 #if defined(HPUX_BUG_COMPATIBLE) && !defined(HPUX_COMPATIBLE)
337 #define HPUX_COMPATIBLE
338 #endif
340 #if defined(DIGITAL_UNIX_BUG_COMPATIBLE) && !defined(DIGITAL_UNIX_COMPATIBLE)
341 #define DIGITAL_UNIX_COMPATIBLE
342 #endif
344 #if defined(PERL_BUG_COMPATIBLE) && !defined(PERL_COMPATIBLE)
345 #define PERL_COMPATIBLE
346 #endif
348 #if defined(LINUX_BUG_COMPATIBLE) && !defined(LINUX_COMPATIBLE)
349 #define LINUX_COMPATIBLE
350 #endif
352 #include <sys/types.h>
353 #include <ctype.h>
354 #include <string.h>
355 #include <stdlib.h>
356 #include <stdio.h>
357 #include <stdarg.h>
358 #include <assert.h>
359 #include <errno.h>
361 /* For copying strings longer or equal to 'breakeven_point'
362 * it is more efficient to call memcpy() than to do it inline.
363 * The value depends mostly on the processor architecture,
364 * but also on the compiler and its optimization capabilities.
365 * The value is not critical, some small value greater than zero
366 * will be just fine if you don't care to squeeze every drop
367 * of performance out of the code.
369 * Small values favour memcpy & memset (extra procedure call, less code),
370 * large values favour inline code (saves procedure call, more code).
372 #if defined(__alpha__) || defined(__alpha)
373 # define breakeven_point 2 /* AXP (DEC Alpha) - gcc or cc */
374 #endif
375 #if defined(__i386__) || defined(__i386)
376 # define breakeven_point 15 /* Intel Pentium/Linux - gcc 2.96 (12..30) */
377 #endif
378 #if defined(__hppa)
379 # define breakeven_point 10 /* HP-PA - gcc */
380 #endif
381 #if defined(__sparc__) || defined(__sparc)
382 # define breakeven_point 33 /* Sun Sparc 5 - gcc 2.8.1 */
383 #endif
385 /* some other values of possible interest: */
386 /* #define breakeven_point 8 */ /* VAX 4000 - vaxc */
387 /* #define breakeven_point 19 */ /* VAX 4000 - gcc 2.7.0 */
389 #ifndef breakeven_point
390 # define breakeven_point 6 /* some reasonable one-size-fits-all value */
391 #endif
393 #define fast_memcpy(d,s,n) \
394 { register size_t nn = (size_t)(n); \
395 if (nn >= breakeven_point) memcpy((d), (s), nn); \
396 else if (nn > 0) { /* call overhead is worth only for large strings*/ \
397 register char *dd; register const char *ss; \
398 for (ss=(s), dd=(d); nn>0; nn--) *dd++ = *ss++; } }
400 #define fast_memset(d,c,n) \
401 { register size_t nn = (size_t)(n); \
402 if (nn >= breakeven_point) memset((d), (int)(c), nn); \
403 else if (nn > 0) { /* call overhead is worth only for large strings*/ \
404 register char *dd; register const int cc=(int)(c); \
405 for (dd=(d); nn>0; nn--) *dd++ = cc; } }
407 /* The following isdigit() is not portable (e.g. may not work
408 * with non-ASCII character sets). Use the system-provided isdigit()
409 * if available, otherwise uncomment:
410 * #define isdigit(c) ((c) >= '0' && (c) <= '9')
413 /* atosizet converts a span of decimal digits to a number of type size_t.
414 * It is a macro, similar to: (but not quite, p will be modified!)
415 * void atosizet(const char *p, const char **endp, size_t *result);
416 * endp will point to just beyond the digits substring.
417 * This is _not_ a general-purpose macro:
418 * - the first argument will be modified;
419 * - the first character must already be checked to be a digit!
420 * NOTE: size_t could be wider than unsigned int;
421 * but we treat numeric string like common implementations do!
422 * If character set is ASCII (checking with a quick and simple-minded test)
423 * we convert string to a number inline for speed, otherwise we call strtoul.
425 #define atosizet(p, endp, result) \
426 if ((int)'0' == 48) { /* a compile-time constant expression, */ \
427 /* hoping the code from one branch */ \
428 /* will be optimized away */ \
429 /* looks like ASCII character set, let's hope it really is */ \
430 register unsigned int uj = (unsigned int)(*(p)++ - '0'); \
431 while (isdigit((int)(*(p)))) \
432 uj = 10*uj + (unsigned int)(*(p)++ - '0'); \
433 if ((endp) != NULL) *(endp) = (p); \
434 *(result) = (size_t) uj; \
435 } else { \
436 /* non-ASCII character set, play by the rules */ \
437 char *ep; /* NOTE: no 'const' to make strtoul happy! */ \
438 /* NOTE: clip (unsigned long) to (unsigned int) as is common !!! */ \
439 const unsigned int uj = (unsigned int) strtoul((p), &ep, 10); \
440 /* The following assignment is legal: the address of a non-const */ \
441 /* object can be assigned to a pointer to a const object, but */ \
442 /* that pointer cannot be used to alter the value of the object. */ \
443 if ((endp) != NULL) *(endp) = ep; \
444 /* if num too large the result will be ULONG_MAX and errno=ERANGE */ \
445 *(result) = (size_t) uj; \
448 /* prototypes */
450 #if defined(NEED_ASPRINTF)
451 int asprintf (char **ptr, const char *fmt, /*args*/ ...);
452 #endif
453 #if defined(NEED_VASPRINTF)
454 int vasprintf (char **ptr, const char *fmt, va_list ap);
455 #endif
456 #if defined(NEED_ASNPRINTF)
457 int asnprintf (char **ptr, size_t str_m, const char *fmt, /*args*/ ...);
458 #endif
459 #if defined(NEED_VASNPRINTF)
460 int vasnprintf (char **ptr, size_t str_m, const char *fmt, va_list ap);
461 #endif
463 #if defined(HAVE_SNPRINTF)
464 /* declare our portable snprintf routine under name portable_snprintf */
465 /* declare our portable vsnprintf routine under name portable_vsnprintf */
466 #else
467 /* declare our portable routines under names snprintf and vsnprintf */
468 #define portable_snprintf snprintf
469 #if !defined(NEED_SNPRINTF_ONLY)
470 #define portable_vsnprintf vsnprintf
471 #endif
472 #endif
474 #if !defined(HAVE_SNPRINTF) || defined(PREFER_PORTABLE_SNPRINTF)
475 int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/ ...);
476 #if !defined(NEED_SNPRINTF_ONLY)
477 int portable_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap);
478 #endif
479 #endif
481 /* declarations */
483 static const char credits[] = "\n\
484 @(#)snprintf.c, v2.3: Mark Martinec, <mark.martinec@ijs.si>\n\
485 @(#)snprintf.c, v2.3: Copyright 1999-2002 Mark Martinec. Dual licensed: Frontier Artistic License or GNU General Public License applies.\n\
486 @(#)snprintf.c, v2.3: http://www.ijs.si/software/snprintf/\n";
488 #if defined(NEED_ASPRINTF)
489 int asprintf(char **ptr, const char *fmt, /*args*/ ...) {
490 va_list ap;
491 size_t str_m;
492 int str_l;
494 *ptr = NULL;
495 va_start(ap, fmt); /* measure the required size */
496 str_l = portable_vsnprintf(NULL, (size_t)0, fmt, ap);
497 va_end(ap);
498 assert(str_l >= 0); /* possible integer overflow if str_m > INT_MAX */
499 *ptr = (char *) malloc(str_m = (size_t)str_l + 1);
500 if (*ptr == NULL) { errno = ENOMEM; str_l = -1; }
501 else {
502 int str_l2;
503 va_start(ap, fmt);
504 str_l2 = portable_vsnprintf(*ptr, str_m, fmt, ap);
505 va_end(ap);
506 assert(str_l2 == str_l);
508 return str_l;
510 #endif
512 #if defined(NEED_VASPRINTF)
513 int vasprintf(char **ptr, const char *fmt, va_list ap) {
514 size_t str_m;
515 int str_l;
517 *ptr = NULL;
518 { va_list ap2;
519 va_copy(ap2, ap); /* don't consume the original ap, we'll need it again */
520 str_l = portable_vsnprintf(NULL, (size_t)0, fmt, ap2);/*get required size*/
521 va_end(ap2);
523 assert(str_l >= 0); /* possible integer overflow if str_m > INT_MAX */
524 *ptr = (char *) malloc(str_m = (size_t)str_l + 1);
525 if (*ptr == NULL) { errno = ENOMEM; str_l = -1; }
526 else {
527 const int str_l2 = portable_vsnprintf(*ptr, str_m, fmt, ap);
528 assert(str_l2 == str_l);
530 return str_l;
532 #endif
534 #if defined(NEED_ASNPRINTF)
535 int asnprintf(char **ptr, size_t str_m, const char *fmt, /*args*/ ...) {
536 va_list ap;
537 int str_l;
539 *ptr = NULL;
540 va_start(ap, fmt); /* measure the required size */
541 str_l = portable_vsnprintf(NULL, (size_t)0, fmt, ap);
542 va_end(ap);
543 assert(str_l >= 0); /* possible integer overflow if str_m > INT_MAX */
544 if ((size_t)str_l + 1 < str_m) str_m = (size_t)str_l + 1; /* truncate */
545 /* if str_m is 0, no buffer is allocated, just set *ptr to NULL */
546 if (str_m == 0) { /* not interested in resulting string, just return size */
547 } else {
548 *ptr = (char *) malloc(str_m);
549 if (*ptr == NULL) { errno = ENOMEM; str_l = -1; }
550 else {
551 int str_l2;
552 va_start(ap, fmt);
553 str_l2 = portable_vsnprintf(*ptr, str_m, fmt, ap);
554 va_end(ap);
555 assert(str_l2 == str_l);
558 return str_l;
560 #endif
562 #if defined(NEED_VASNPRINTF)
563 int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap) {
564 int str_l;
566 *ptr = NULL;
567 { va_list ap2;
568 va_copy(ap2, ap); /* don't consume the original ap, we'll need it again */
569 str_l = portable_vsnprintf(NULL, (size_t)0, fmt, ap2);/*get required size*/
570 va_end(ap2);
572 assert(str_l >= 0); /* possible integer overflow if str_m > INT_MAX */
573 if ((size_t)str_l + 1 < str_m) str_m = (size_t)str_l + 1; /* truncate */
574 /* if str_m is 0, no buffer is allocated, just set *ptr to NULL */
575 if (str_m == 0) { /* not interested in resulting string, just return size */
576 } else {
577 *ptr = (char *) malloc(str_m);
578 if (*ptr == NULL) { errno = ENOMEM; str_l = -1; }
579 else {
580 const int str_l2 = portable_vsnprintf(*ptr, str_m, fmt, ap);
581 assert(str_l2 == str_l);
584 return str_l;
586 #endif
589 * If the system does have snprintf and the portable routine is not
590 * specifically required, this module produces no code for snprintf/vsnprintf.
592 #if !defined(HAVE_SNPRINTF) || defined(PREFER_PORTABLE_SNPRINTF)
594 #if !defined(NEED_SNPRINTF_ONLY)
595 int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/ ...) {
596 va_list ap;
597 int str_l;
599 va_start(ap, fmt);
600 str_l = portable_vsnprintf(str, str_m, fmt, ap);
601 va_end(ap);
602 return str_l;
604 #endif
606 #if defined(NEED_SNPRINTF_ONLY)
607 int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/ ...) {
608 #else
609 int portable_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap) {
610 #endif
612 #if defined(NEED_SNPRINTF_ONLY)
613 va_list ap;
614 #endif
615 size_t str_l = 0;
616 const char *p = fmt;
618 /* In contrast to POSIX, the ISO C99 now says
619 * that str can be NULL and str_m can be 0.
620 * This is more useful than the old: if (str_m < 1) return -1; */
622 #if defined(NEED_SNPRINTF_ONLY)
623 va_start(ap, fmt);
624 #endif
625 if (!p) p = "";
626 while (*p) {
627 if (*p != '%') {
628 if (0) { /* compile time decision between two equivalent alternatives */
629 /* this is simple but slow */
630 if (str_l < str_m) str[str_l] = *p;
631 p++; str_l++;
632 } else {
633 /* this usually achieves much better performance for cases
634 * where format string is long and contains few conversions */
635 const char *const q = strchr(p+1,'%');
636 const size_t n = !q ? strlen(p) : (q-p);
637 if (str_l < str_m) {
638 const size_t avail = str_m-str_l;
639 fast_memcpy(str+str_l, p, (n>avail?avail:n));
641 p += n; str_l += n;
643 } else {
644 const char *starting_p;
645 size_t min_field_width = 0, precision = 0;
646 int zero_padding = 0, precision_specified = 0, justify_left = 0;
647 int alternate_form = 0, force_sign = 0;
648 int space_for_positive = 1; /* If both the ' ' and '+' flags appear,
649 the ' ' flag should be ignored. */
650 char length_modifier = '\0'; /* allowed values: \0, h, l, L */
651 char tmp[48];/* temporary buffer for simple numeric->string conversion */
653 const char *str_arg; /* string address in case of string argument */
654 size_t str_arg_l; /* natural field width of arg without padding
655 and sign */
656 unsigned char uchar_arg;
657 /* unsigned char argument value - only defined for c conversion.
658 N.B. standard explicitly states the char argument for
659 the c conversion is unsigned */
661 size_t number_of_zeros_to_pad = 0;
662 /* number of zeros to be inserted for numeric conversions
663 as required by the precision or minimal field width */
665 size_t zero_padding_insertion_ind = 0;
666 /* index into tmp where zero padding is to be inserted */
668 char fmt_spec = '\0';
669 /* current conversion specifier character */
671 str_arg = credits;/* just to make compiler happy (defined but not used)*/
672 str_arg = NULL;
673 starting_p = p; p++; /* skip '%' */
674 /* parse flags */
675 while (*p == '0' || *p == '-' || *p == '+' ||
676 *p == ' ' || *p == '#' || *p == '\'') {
677 switch (*p) {
678 case '0': zero_padding = 1; break;
679 case '-': justify_left = 1; break;
680 case '+': force_sign = 1; space_for_positive = 0; break;
681 case ' ': force_sign = 1;
682 /* If both the ' ' and '+' flags appear, the ' ' flag should be ignored */
683 #ifdef PERL_COMPATIBLE
684 /* ... but in Perl the last of ' ' and '+' applies */
685 space_for_positive = 1;
686 #endif
687 break;
688 case '#': alternate_form = 1; break;
689 case '\'': break;
691 p++;
693 /* If flags '0' and '-' both appear, the '0' flag should be ignored. */
695 /* parse field width */
696 if (*p == '*') {
697 const int j = va_arg(ap, int);
698 p++;
699 if (j >= 0) min_field_width = j;
700 else { min_field_width = -j; justify_left = 1; }
701 } else if (isdigit((int)(*p))) {
702 atosizet(p, &p, &min_field_width);
704 /* parse precision */
705 if (*p == '.') {
706 p++; precision_specified = 1;
707 if (*p == '*') {
708 const int j = va_arg(ap, int);
709 p++;
710 if (j >= 0) precision = j;
711 else {
712 precision_specified = 0; precision = 0;
713 /* NOTE:
714 * Solaris 2.6 man page claims that in this case the precision
715 * should be set to 0. Digital Unix 4.0, HPUX 10 and BSD man page
716 * claim that this case should be treated as unspecified precision,
717 * which is what we do here.
720 } else if (isdigit((int)(*p))) {
721 atosizet(p, &p, &precision);
724 /* parse 'h', 'l' and 'll' length modifiers */
725 if (*p == 'h' || *p == 'l') {
726 length_modifier = *p; p++;
727 if (length_modifier == 'l' && *p == 'l') { /* double el = long long */
728 #ifdef SNPRINTF_LONGLONG_SUPPORT
729 length_modifier = '2'; /* double letter el encoded as '2' */
730 #else
731 length_modifier = 'l'; /* treat it as a single 'l' (letter el) */
732 #endif
733 p++;
736 fmt_spec = *p;
737 /* common synonyms: */
738 switch (fmt_spec) {
739 case 'i': fmt_spec = 'd'; break;
740 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
741 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
742 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
743 default: break;
745 /* get parameter value, do initial processing */
746 switch (fmt_spec) {
747 case '%': /* % behaves similar to 's' regarding flags and field widths */
748 case 'c': /* c behaves similar to 's' regarding flags and field widths */
749 case 's':
750 length_modifier = '\0'; /* wint_t and wchar_t not supported */
751 /* the result of zero padding flag with non-numeric conversion specifier*/
752 /* is undefined. Solaris and HPUX 10 does zero padding in this case, */
753 /* Digital Unix and Linux does not. */
754 #if !defined(SOLARIS_COMPATIBLE) && !defined(HPUX_COMPATIBLE)
755 zero_padding = 0; /* turn zero padding off for string conversions */
756 #endif
757 str_arg_l = 1;
758 switch (fmt_spec) {
759 case '%':
760 str_arg = p; break;
761 case 'c': {
762 const int j = va_arg(ap, int);
763 uchar_arg = (unsigned char) j; /* standard demands unsigned char */
764 str_arg = (const char *) &uchar_arg;
765 break;
767 case 's':
768 str_arg = va_arg(ap, const char *);
769 if (!str_arg) str_arg_l = 0;
770 /* make sure not to address string beyond the specified precision !!! */
771 else if (!precision_specified) str_arg_l = strlen(str_arg);
772 /* truncate string if necessary as requested by precision */
773 else if (precision == 0) str_arg_l = 0;
774 else {
775 /* memchr on HP does not like n > 2^31 !!! */
776 const char *const q = (const char *) memchr(str_arg, '\0',
777 precision <= 0x7fffffff ? precision : 0x7fffffff);
778 str_arg_l = !q ? precision : (q-str_arg);
780 break;
781 default: break;
783 break;
784 case 'd': case 'u': case 'o': case 'x': case 'X': case 'p': {
785 /* NOTE: the u, o, x, X and p conversion specifiers imply
786 the value is unsigned; d implies a signed value */
788 int arg_sign = 0;
789 /* 0 if numeric argument is zero (or if pointer is NULL for 'p'),
790 +1 if greater than zero (or nonzero for unsigned arguments),
791 -1 if negative (unsigned argument is never negative) */
793 int int_arg = 0; unsigned int uint_arg = 0;
794 /* only defined for length modifier h, or for no length modifiers */
796 long int long_arg = 0; unsigned long int ulong_arg = 0;
797 /* only defined for length modifier l (letter el) */
799 void *ptr_arg = NULL;
800 /* pointer argument value - only defined for p conversion */
802 #ifdef SNPRINTF_LONGLONG_SUPPORT
803 long long int long_long_arg = 0;
804 unsigned long long int ulong_long_arg = 0;
805 /* only defined for length modifier ll (double letter el) */
806 #endif
807 if (fmt_spec == 'p') {
808 /* HPUX 10: An l, h, ll or L before any other conversion character
809 * (other than d, i, u, o, x, or X) is ignored.
810 * Digital Unix:
811 * not specified, but seems to behave as HPUX does.
812 * Solaris: If an h, l, or L appears before any other conversion
813 * specifier (other than d, i, u, o, x, or X), the behavior
814 * is undefined. (Actually %hp converts only 16-bits of address
815 * and %llp treats address as 64-bit data which is incompatible
816 * with (void *) argument on a 32-bit system).
818 #ifdef SOLARIS_COMPATIBLE
819 # ifdef SOLARIS_BUG_COMPATIBLE
820 /* keep length modifiers even if it represents 'll' */
821 # else
822 if (length_modifier == '2') length_modifier = '\0';
823 # endif
824 #else
825 length_modifier = '\0';
826 #endif
827 ptr_arg = va_arg(ap, void *);
828 if (ptr_arg != NULL) arg_sign = 1;
829 } else if (fmt_spec == 'd') { /* signed */
830 switch (length_modifier) {
831 case '\0':
832 case 'h':
833 /* It is non-portable to specify char or short as the second argument
834 * to va_arg, because arguments seen by the called function
835 * are not char or short. C converts char and short arguments
836 * to int before passing them to a function.
838 int_arg = va_arg(ap, int);
839 if (int_arg > 0) arg_sign = 1;
840 else if (int_arg < 0) arg_sign = -1;
841 break;
842 case 'l': /* letter el */
843 long_arg = va_arg(ap, long int);
844 if (long_arg > 0) arg_sign = 1;
845 else if (long_arg < 0) arg_sign = -1;
846 break;
847 #ifdef SNPRINTF_LONGLONG_SUPPORT
848 case '2':
849 long_long_arg = va_arg(ap, long long int);
850 if (long_long_arg > 0) arg_sign = 1;
851 else if (long_long_arg < 0) arg_sign = -1;
852 break;
853 #endif
855 } else { /* unsigned */
856 switch (length_modifier) {
857 case '\0':
858 case 'h':
859 uint_arg = va_arg(ap, unsigned int);
860 if (uint_arg) arg_sign = 1;
861 break;
862 case 'l': /* letter el */
863 ulong_arg = va_arg(ap, unsigned long int);
864 if (ulong_arg) arg_sign = 1;
865 break;
866 #ifdef SNPRINTF_LONGLONG_SUPPORT
867 case '2':
868 ulong_long_arg = va_arg(ap, unsigned long long int);
869 if (ulong_long_arg) arg_sign = 1;
870 break;
871 #endif
874 str_arg = tmp; str_arg_l = 0;
875 /* NOTE:
876 * For d, i, u, o, x, and X conversions, if precision is specified,
877 * the '0' flag should be ignored. This is so with Solaris 2.6,
878 * Digital UNIX 4.0, HPUX 10, Linux, FreeBSD, NetBSD; but not with Perl.
880 #ifndef PERL_COMPATIBLE
881 if (precision_specified) zero_padding = 0;
882 #endif
883 if (fmt_spec == 'd') {
884 if (force_sign && arg_sign >= 0)
885 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
886 /* leave negative numbers for sprintf to handle,
887 to avoid handling tricky cases like (short int)(-32768) */
888 #ifdef LINUX_COMPATIBLE
889 } else if (fmt_spec == 'p' && force_sign && arg_sign > 0) {
890 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
891 #endif
892 } else if (alternate_form) {
893 if (arg_sign != 0 && (fmt_spec == 'x' || fmt_spec == 'X') )
894 { tmp[str_arg_l++] = '0'; tmp[str_arg_l++] = fmt_spec; }
895 /* alternate form should have no effect for p conversion, but ... */
896 #ifdef HPUX_COMPATIBLE
897 else if (fmt_spec == 'p'
898 /* HPUX 10: for an alternate form of p conversion,
899 * a nonzero result is prefixed by 0x. */
900 #ifndef HPUX_BUG_COMPATIBLE
901 /* Actually it uses 0x prefix even for a zero value. */
902 && arg_sign != 0
903 #endif
904 ) { tmp[str_arg_l++] = '0'; tmp[str_arg_l++] = 'x'; }
905 #endif
907 zero_padding_insertion_ind = str_arg_l;
908 if (!precision_specified) precision = 1; /* default precision is 1 */
909 if (precision == 0 && arg_sign == 0
910 #if defined(HPUX_BUG_COMPATIBLE) || defined(LINUX_COMPATIBLE)
911 && fmt_spec != 'p'
912 /* HPUX 10 man page claims: With conversion character p the result of
913 * converting a zero value with a precision of zero is a null string.
914 * Actually HP returns all zeroes, and Linux returns "(nil)". */
915 #endif
917 /* converted to null string */
918 /* When zero value is formatted with an explicit precision 0,
919 the resulting formatted string is empty (d, i, u, o, x, X, p). */
920 } else {
921 static int sprintf_return_value_is_ansi_compliant = -1; /* unknown */
922 char f[5]; int f_l = 0, sprintf_l = 0;
923 f[f_l++] = '%'; /* construct a simple format string for sprintf */
924 if (!length_modifier) { }
925 else if (length_modifier=='2') { f[f_l++] = 'l'; f[f_l++] = 'l'; }
926 else f[f_l++] = length_modifier;
927 f[f_l++] = fmt_spec; f[f_l++] = '\0';
928 if (sprintf_return_value_is_ansi_compliant < 0) { /* not yet known */
929 /* let's do a little run-time experiment (only once) to see if the
930 * native sprintf returns a string length as required by ANSI, or has
931 * some other ideas like the old SunOS which returns buffer address */
932 sprintf_return_value_is_ansi_compliant =
933 (sprintf(tmp+str_arg_l, "%d", 19) == 2);
935 if (fmt_spec == 'p') sprintf_l=sprintf(tmp+str_arg_l, f, ptr_arg);
936 else if (fmt_spec == 'd') { /* signed */
937 switch (length_modifier) {
938 case '\0':
939 case 'h': sprintf_l=sprintf(tmp+str_arg_l, f, int_arg); break;
940 case 'l': sprintf_l=sprintf(tmp+str_arg_l, f, long_arg); break;
941 #ifdef SNPRINTF_LONGLONG_SUPPORT
942 case '2': sprintf_l=sprintf(tmp+str_arg_l,f,long_long_arg); break;
943 #endif
945 } else { /* unsigned */
946 switch (length_modifier) {
947 case '\0':
948 case 'h': sprintf_l=sprintf(tmp+str_arg_l, f, uint_arg); break;
949 case 'l': sprintf_l=sprintf(tmp+str_arg_l, f, ulong_arg); break;
950 #ifdef SNPRINTF_LONGLONG_SUPPORT
951 case '2': sprintf_l=sprintf(tmp+str_arg_l,f,ulong_long_arg);break;
952 #endif
955 if (!sprintf_return_value_is_ansi_compliant) { /* broken sprintf? */
956 tmp[sizeof(tmp)-1] = '\0'; sprintf_l = strlen(tmp+str_arg_l);
958 assert(sprintf_l >= 0); /* should not happen; problem in sprintf? */
959 assert(sprintf_l+str_arg_l < sizeof(tmp)); /*better late then never*/
960 str_arg_l += sprintf_l;
961 /* include the optional minus sign and possible "0x"
962 in the region before the zero padding insertion point */
963 if (zero_padding_insertion_ind < str_arg_l &&
964 tmp[zero_padding_insertion_ind] == '-') {
965 zero_padding_insertion_ind++;
967 if (zero_padding_insertion_ind+1 < str_arg_l &&
968 tmp[zero_padding_insertion_ind] == '0' &&
969 (tmp[zero_padding_insertion_ind+1] == 'x' ||
970 tmp[zero_padding_insertion_ind+1] == 'X') ) {
971 zero_padding_insertion_ind += 2;
974 { const size_t num_of_digits = str_arg_l - zero_padding_insertion_ind;
975 if (alternate_form && fmt_spec == 'o'
976 #ifdef HPUX_COMPATIBLE /* ("%#.o",0) -> "" */
977 && (str_arg_l > 0)
978 #endif
979 #ifdef DIGITAL_UNIX_BUG_COMPATIBLE /* ("%#o",0) -> "00" */
980 #else
981 /* unless zero is already the first character */
982 && !(zero_padding_insertion_ind < str_arg_l
983 && tmp[zero_padding_insertion_ind] == '0')
984 #endif
985 ) { /* assure leading zero for alternate-form octal numbers */
986 if (!precision_specified || precision < num_of_digits+1) {
987 /* precision is increased to force the first character to be zero,
988 except if a zero value is formatted with an explicit precision
989 of zero */
990 precision = num_of_digits+1; precision_specified = 1;
993 /* zero padding to specified precision? */
994 if (num_of_digits < precision)
995 number_of_zeros_to_pad = precision - num_of_digits;
997 /* zero padding to specified minimal field width? */
998 if (!justify_left && zero_padding) {
999 const int n = min_field_width - (str_arg_l+number_of_zeros_to_pad);
1000 if (n > 0) number_of_zeros_to_pad += n;
1002 break;
1004 case 'n': {
1005 void *const ptr = va_arg(ap, void *);
1006 if (ptr != NULL) {
1007 /* same problem of size_t -> int type conversion as with the
1008 * snprintf return value - see comment at the end of this procedure */
1009 switch (length_modifier) {
1010 case '\0': *( int *const)ptr = str_l; break;
1011 case 'h': *(short int *const)ptr = str_l; break;
1012 case 'l': *(long int *const)ptr = str_l; break;
1013 #ifdef SNPRINTF_LONGLONG_SUPPORT
1014 case '2': *(long long int *const)ptr = str_l; break;
1015 #endif
1018 /* no argument converted */
1019 min_field_width = number_of_zeros_to_pad = str_arg_l = 0;
1020 break;
1022 default: /* unrecognized conversion specifier, keep format string as-is*/
1023 zero_padding = 0; /* turn zero padding off for non-numeric convers. */
1024 #ifndef DIGITAL_UNIX_COMPATIBLE
1025 justify_left = 1; min_field_width = 0; /* reset flags */
1026 #endif
1027 #if defined(PERL_COMPATIBLE) || defined(LINUX_COMPATIBLE)
1028 /* keep the entire format string unchanged */
1029 str_arg = starting_p; str_arg_l = p - starting_p;
1030 /* well, not exactly so for Linux, which does something inbetween,
1031 * and I don't feel an urge to imitate it: "%+++++hy" -> "%+y" */
1032 #else
1033 /* discard the unrecognized conversion, just keep *
1034 * the unrecognized conversion character */
1035 str_arg = p; str_arg_l = 0;
1036 #endif
1037 if (*p) str_arg_l++; /* include invalid conversion specifier unchanged
1038 if not at end-of-string */
1039 break;
1041 if (*p) p++; /* step over the just processed conversion specifier */
1042 /* insert padding to the left as requested by min_field_width;
1043 this does not include the zero padding in case of numerical conversions*/
1044 if (!justify_left) { /* left padding with blank or zero */
1045 const int n = min_field_width - (str_arg_l+number_of_zeros_to_pad);
1046 if (n > 0) {
1047 if (str_l < str_m) {
1048 const size_t avail = str_m-str_l;
1049 fast_memset(str+str_l, (zero_padding?'0':' '),
1050 ((unsigned int)n > avail ? avail : (unsigned int)n));
1052 str_l += n;
1055 /* is zero padding as requested by the precision or by the
1056 * minimal field width for numeric conversions required? */
1057 if (number_of_zeros_to_pad <= 0) {
1058 /* will not copy the first part of numeric right now, *
1059 * force it to be copied later in its entirety */
1060 zero_padding_insertion_ind = 0;
1061 } else {
1062 /* insert first part of numerics (sign or '0x') before zero padding */
1063 { const int n = zero_padding_insertion_ind;
1064 if (n > 0) {
1065 if (str_l < str_m) {
1066 const size_t avail = str_m-str_l;
1067 fast_memcpy(str+str_l, str_arg,
1068 ((unsigned int)n > avail ? avail : (unsigned int)n));
1070 str_l += n;
1073 /* insert zero padding as requested by the precision or min field width */
1074 { const int n = number_of_zeros_to_pad;
1075 if (n > 0) {
1076 if (str_l < str_m) {
1077 const size_t avail = str_m-str_l;
1078 fast_memset(str+str_l, '0',
1079 ((unsigned int)n > avail ? avail : (unsigned int)n));
1081 str_l += n;
1085 /* insert formatted string
1086 * (or as-is conversion specifier for unknown conversions) */
1087 { const int n = str_arg_l - zero_padding_insertion_ind;
1088 if (n > 0) {
1089 if (str_l < str_m) {
1090 const size_t avail = str_m-str_l;
1091 fast_memcpy(str+str_l, str_arg+zero_padding_insertion_ind,
1092 ((unsigned int)n > avail ? avail : (unsigned int)n));
1094 str_l += n;
1097 /* insert right padding */
1098 if (justify_left) { /* right blank padding to the field width */
1099 const int n = min_field_width - (str_arg_l+number_of_zeros_to_pad);
1100 if (n > 0) {
1101 if (str_l < str_m) {
1102 const size_t avail = str_m-str_l;
1103 fast_memset(str+str_l, ' ',
1104 ((unsigned int)n > avail ? avail : (unsigned int)n));
1106 str_l += n;
1111 #if defined(NEED_SNPRINTF_ONLY)
1112 va_end(ap);
1113 #endif
1114 if (str_m > 0) { /* make sure the string is null-terminated, possibly
1115 at the expense of overwriting the last character */
1116 str[str_l <= str_m-1 ? str_l : str_m-1] = '\0';
1118 /* Return the number of characters formatted (excluding trailing null
1119 * character), that is, the number of characters that would have been
1120 * written to the buffer if it were large enough.
1122 * The value of str_l should be returned, but str_l is of unsigned type
1123 * size_t, and snprintf is int, possibly leading to an undetected
1124 * integer overflow, resulting in a negative return value, which is invalid.
1125 * Both XSH5 and ISO C99 (at least the draft) are silent on this issue.
1126 * Should errno be set to EOVERFLOW and EOF returned in this case???
1128 return (int) str_l;
1130 #endif