blob: d95b6a40158f0f29735946de96f62924e8c8e87b [file] [log] [blame]
Damien Millerf18462f2003-04-01 21:31:56 +10001/*
2 * Copyright Patrick Powell 1995
3 * This code is based on code written by Patrick Powell (papowell@astart.com)
4 * It may be used for any purpose as long as this notice remains intact
5 * on all source code distributions
6 */
7
Damien Miller168e6ac2000-07-11 12:23:01 +10008/**************************************************************
9 * Original:
10 * Patrick Powell Tue Apr 11 09:48:21 PDT 1995
11 * A bombproof version of doprnt (dopr) included.
12 * Sigh. This sort of thing is always nasty do deal with. Note that
13 * the version here does not include floating point...
Damien Miller42b81ff1999-11-26 12:21:24 +110014 *
Damien Miller168e6ac2000-07-11 12:23:01 +100015 * snprintf() is used instead of sprintf() as it does limit checks
16 * for string length. This covers a nasty loophole.
Damien Miller42b81ff1999-11-26 12:21:24 +110017 *
Damien Miller168e6ac2000-07-11 12:23:01 +100018 * The other functions are there to prevent NULL pointers from
19 * causing nast effects.
Damien Miller42b81ff1999-11-26 12:21:24 +110020 *
Damien Miller168e6ac2000-07-11 12:23:01 +100021 * More Recently:
22 * Brandon Long <blong@fiction.net> 9/15/96 for mutt 0.43
23 * This was ugly. It is still ugly. I opted out of floating point
24 * numbers, but the formatter understands just about everything
25 * from the normal C string format, at least as far as I can tell from
26 * the Solaris 2.5 printf(3S) man page.
27 *
28 * Brandon Long <blong@fiction.net> 10/22/97 for mutt 0.87.1
29 * Ok, added some minimal floating point support, which means this
30 * probably requires libm on most operating systems. Don't yet
31 * support the exponent (e,E) and sigfig (g,G). Also, fmtint()
32 * was pretty badly broken, it just wasn't being exercised in ways
33 * which showed it, so that's been fixed. Also, formated the code
34 * to mutt conventions, and removed dead code left over from the
35 * original. Also, there is now a builtin-test, just compile with:
36 * gcc -DTEST_SNPRINTF -o snprintf snprintf.c -lm
37 * and run snprintf for results.
38 *
39 * Thomas Roessler <roessler@guug.de> 01/27/98 for mutt 0.89i
40 * The PGP code was using unsigned hexadecimal formats.
41 * Unfortunately, unsigned formats simply didn't work.
42 *
43 * Michael Elkins <me@cs.hmc.edu> 03/05/98 for mutt 0.90.8
44 * The original code assumed that both snprintf() and vsnprintf() were
45 * missing. Some systems only have snprintf() but not vsnprintf(), so
46 * the code is now broken down under HAVE_SNPRINTF and HAVE_VSNPRINTF.
47 *
Damien Miller57f39152005-11-24 19:58:19 +110048 * Andrew Tridgell (tridge@samba.org) Oct 1998
49 * fixed handling of %.0f
50 * added test for HAVE_LONG_DOUBLE
Ben Lindstrom6c92dab2001-02-13 02:18:50 +000051 *
Damien Miller57f39152005-11-24 19:58:19 +110052 * tridge@samba.org, idra@samba.org, April 2001
53 * got rid of fcvt code (twas buggy and made testing harder)
54 * added C99 semantics
55 *
56 * date: 2002/12/19 19:56:31; author: herb; state: Exp; lines: +2 -0
57 * actually print args for %g and %e
58 *
59 * date: 2002/06/03 13:37:52; author: jmcd; state: Exp; lines: +8 -0
60 * Since includes.h isn't included here, VA_COPY has to be defined here. I don't
61 * see any include file that is guaranteed to be here, so I'm defining it
62 * locally. Fixes AIX and Solaris builds.
63 *
64 * date: 2002/06/03 03:07:24; author: tridge; state: Exp; lines: +5 -13
65 * put the ifdef for HAVE_VA_COPY in one place rather than in lots of
66 * functions
67 *
68 * date: 2002/05/17 14:51:22; author: jmcd; state: Exp; lines: +21 -4
69 * Fix usage of va_list passed as an arg. Use __va_copy before using it
70 * when it exists.
71 *
72 * date: 2002/04/16 22:38:04; author: idra; state: Exp; lines: +20 -14
73 * Fix incorrect zpadlen handling in fmtfp.
74 * Thanks to Ollie Oldham <ollie.oldham@metro-optix.com> for spotting it.
75 * few mods to make it easier to compile the tests.
76 * addedd the "Ollie" test to the floating point ones.
77 *
78 * Martin Pool (mbp@samba.org) April 2003
79 * Remove NO_CONFIG_H so that the test case can be built within a source
80 * tree with less trouble.
81 * Remove unnecessary SAFE_FREE() definition.
82 *
83 * Martin Pool (mbp@samba.org) May 2003
84 * Put in a prototype for dummy_snprintf() to quiet compiler warnings.
85 *
86 * Move #endif to make sure VA_COPY, LDOUBLE, etc are defined even
87 * if the C library has some snprintf functions already.
Damien Miller742cc1c2007-01-14 21:20:30 +110088 *
89 * Damien Miller (djm@mindrot.org) Jan 2007
90 * Fix integer overflows in return value.
91 * Make formatting quite a bit faster by inlining dopr_outch()
92 *
Damien Miller168e6ac2000-07-11 12:23:01 +100093 **************************************************************/
Damien Miller42b81ff1999-11-26 12:21:24 +110094
Damien Millere9cf3572001-02-09 12:55:35 +110095#include "includes.h"
96
Ben Lindstrom63941f92001-02-25 23:20:40 +000097#if defined(BROKEN_SNPRINTF) /* For those with broken snprintf() */
98# undef HAVE_SNPRINTF
99# undef HAVE_VSNPRINTF
100#endif
Damien Miller42b81ff1999-11-26 12:21:24 +1100101
Damien Miller168e6ac2000-07-11 12:23:01 +1000102#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
Damien Miller42b81ff1999-11-26 12:21:24 +1100103
Darren Tuckerf78fb542006-08-06 21:25:24 +1000104#include <ctype.h>
Darren Tucker08432d52006-09-09 15:59:43 +1000105#include <stdarg.h>
Darren Tuckerf78fb542006-08-06 21:25:24 +1000106#include <stdlib.h>
Damien Miller62da44f2006-07-24 15:08:35 +1000107#include <string.h>
Damien Miller742cc1c2007-01-14 21:20:30 +1100108#include <limits.h>
109#include <errno.h>
Damien Miller62da44f2006-07-24 15:08:35 +1000110
Damien Miller57f39152005-11-24 19:58:19 +1100111#ifdef HAVE_LONG_DOUBLE
112# define LDOUBLE long double
113#else
114# define LDOUBLE double
115#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000116
Damien Miller57f39152005-11-24 19:58:19 +1100117#ifdef HAVE_LONG_LONG
118# define LLONG long long
119#else
120# define LLONG long
121#endif
Ben Lindstrom116b6bd2001-02-13 14:05:59 +0000122
Damien Miller168e6ac2000-07-11 12:23:01 +1000123/*
124 * dopr(): poor man's version of doprintf
125 */
126
127/* format read states */
128#define DP_S_DEFAULT 0
129#define DP_S_FLAGS 1
130#define DP_S_MIN 2
131#define DP_S_DOT 3
132#define DP_S_MAX 4
133#define DP_S_MOD 5
134#define DP_S_CONV 6
135#define DP_S_DONE 7
136
137/* format flags - Bits */
138#define DP_F_MINUS (1 << 0)
139#define DP_F_PLUS (1 << 1)
140#define DP_F_SPACE (1 << 2)
141#define DP_F_NUM (1 << 3)
142#define DP_F_ZERO (1 << 4)
143#define DP_F_UP (1 << 5)
144#define DP_F_UNSIGNED (1 << 6)
145
146/* Conversion Flags */
Damien Miller57f39152005-11-24 19:58:19 +1100147#define DP_C_SHORT 1
148#define DP_C_LONG 2
149#define DP_C_LDOUBLE 3
150#define DP_C_LLONG 4
Damien Miller04be8b92013-08-28 12:49:43 +1000151#define DP_C_SIZE 5
152#define DP_C_INTMAX 6
Damien Miller168e6ac2000-07-11 12:23:01 +1000153
Damien Miller57f39152005-11-24 19:58:19 +1100154#define char_to_int(p) ((p)- '0')
155#ifndef MAX
156# define MAX(p,q) (((p) >= (q)) ? (p) : (q))
157#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000158
Damien Miller742cc1c2007-01-14 21:20:30 +1100159#define DOPR_OUTCH(buf, pos, buflen, thechar) \
160 do { \
Darren Tucker07877ca2007-01-24 00:07:29 +1100161 if (pos + 1 >= INT_MAX) { \
Damien Miller742cc1c2007-01-14 21:20:30 +1100162 errno = ERANGE; \
163 return -1; \
Darren Tucker07877ca2007-01-24 00:07:29 +1100164 } \
Damien Miller742cc1c2007-01-14 21:20:30 +1100165 if (pos < buflen) \
166 buf[pos] = thechar; \
Darren Tucker07877ca2007-01-24 00:07:29 +1100167 (pos)++; \
Damien Miller742cc1c2007-01-14 21:20:30 +1100168 } while (0)
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000169
Damien Miller742cc1c2007-01-14 21:20:30 +1100170static int dopr(char *buffer, size_t maxlen, const char *format,
171 va_list args_in);
172static int fmtstr(char *buffer, size_t *currlen, size_t maxlen,
173 char *value, int flags, int min, int max);
174static int fmtint(char *buffer, size_t *currlen, size_t maxlen,
Damien Miller04be8b92013-08-28 12:49:43 +1000175 intmax_t value, int base, int min, int max, int flags);
Damien Miller742cc1c2007-01-14 21:20:30 +1100176static int fmtfp(char *buffer, size_t *currlen, size_t maxlen,
177 LDOUBLE fvalue, int min, int max, int flags);
178
179static int
180dopr(char *buffer, size_t maxlen, const char *format, va_list args_in)
Damien Miller13bc0be1999-12-28 10:19:16 +1100181{
Damien Miller57f39152005-11-24 19:58:19 +1100182 char ch;
Damien Miller04be8b92013-08-28 12:49:43 +1000183 intmax_t value;
Damien Miller57f39152005-11-24 19:58:19 +1100184 LDOUBLE fvalue;
185 char *strvalue;
186 int min;
187 int max;
188 int state;
189 int flags;
190 int cflags;
191 size_t currlen;
192 va_list args;
Damien Miller13bc0be1999-12-28 10:19:16 +1100193
Damien Miller57f39152005-11-24 19:58:19 +1100194 VA_COPY(args, args_in);
195
196 state = DP_S_DEFAULT;
197 currlen = flags = cflags = min = 0;
198 max = -1;
199 ch = *format++;
200
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000201 while (state != DP_S_DONE) {
Damien Miller57f39152005-11-24 19:58:19 +1100202 if (ch == '\0')
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000203 state = DP_S_DONE;
Damien Miller42b81ff1999-11-26 12:21:24 +1100204
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000205 switch(state) {
Damien Miller31741252003-05-19 00:13:38 +1000206 case DP_S_DEFAULT:
207 if (ch == '%')
208 state = DP_S_FLAGS;
Damien Miller742cc1c2007-01-14 21:20:30 +1100209 else
210 DOPR_OUTCH(buffer, currlen, maxlen, ch);
Damien Miller31741252003-05-19 00:13:38 +1000211 ch = *format++;
212 break;
213 case DP_S_FLAGS:
214 switch (ch) {
215 case '-':
216 flags |= DP_F_MINUS;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000217 ch = *format++;
218 break;
Damien Miller31741252003-05-19 00:13:38 +1000219 case '+':
220 flags |= DP_F_PLUS;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000221 ch = *format++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000222 break;
Damien Miller31741252003-05-19 00:13:38 +1000223 case ' ':
224 flags |= DP_F_SPACE;
225 ch = *format++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000226 break;
Damien Miller31741252003-05-19 00:13:38 +1000227 case '#':
228 flags |= DP_F_NUM;
229 ch = *format++;
230 break;
231 case '0':
232 flags |= DP_F_ZERO;
233 ch = *format++;
234 break;
235 default:
236 state = DP_S_MIN;
237 break;
238 }
239 break;
240 case DP_S_MIN:
241 if (isdigit((unsigned char)ch)) {
Damien Miller57f39152005-11-24 19:58:19 +1100242 min = 10*min + char_to_int (ch);
Damien Miller31741252003-05-19 00:13:38 +1000243 ch = *format++;
244 } else if (ch == '*') {
245 min = va_arg (args, int);
246 ch = *format++;
247 state = DP_S_DOT;
Damien Miller57f39152005-11-24 19:58:19 +1100248 } else {
Damien Miller31741252003-05-19 00:13:38 +1000249 state = DP_S_DOT;
Damien Miller57f39152005-11-24 19:58:19 +1100250 }
Damien Miller31741252003-05-19 00:13:38 +1000251 break;
252 case DP_S_DOT:
253 if (ch == '.') {
254 state = DP_S_MAX;
255 ch = *format++;
Damien Miller57f39152005-11-24 19:58:19 +1100256 } else {
Damien Miller31741252003-05-19 00:13:38 +1000257 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100258 }
Damien Miller31741252003-05-19 00:13:38 +1000259 break;
260 case DP_S_MAX:
261 if (isdigit((unsigned char)ch)) {
262 if (max < 0)
263 max = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100264 max = 10*max + char_to_int (ch);
Damien Miller31741252003-05-19 00:13:38 +1000265 ch = *format++;
266 } else if (ch == '*') {
267 max = va_arg (args, int);
268 ch = *format++;
269 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100270 } else {
Damien Miller31741252003-05-19 00:13:38 +1000271 state = DP_S_MOD;
Damien Miller57f39152005-11-24 19:58:19 +1100272 }
Damien Miller31741252003-05-19 00:13:38 +1000273 break;
274 case DP_S_MOD:
275 switch (ch) {
276 case 'h':
277 cflags = DP_C_SHORT;
278 ch = *format++;
279 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000280 case 'j':
281 cflags = DP_C_INTMAX;
282 ch = *format++;
283 break;
Damien Miller31741252003-05-19 00:13:38 +1000284 case 'l':
285 cflags = DP_C_LONG;
286 ch = *format++;
Damien Miller57f39152005-11-24 19:58:19 +1100287 if (ch == 'l') { /* It's a long long */
288 cflags = DP_C_LLONG;
Damien Miller31741252003-05-19 00:13:38 +1000289 ch = *format++;
290 }
291 break;
Damien Miller31741252003-05-19 00:13:38 +1000292 case 'L':
293 cflags = DP_C_LDOUBLE;
294 ch = *format++;
295 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000296 case 'z':
297 cflags = DP_C_SIZE;
298 ch = *format++;
299 break;
Damien Miller31741252003-05-19 00:13:38 +1000300 default:
301 break;
302 }
303 state = DP_S_CONV;
304 break;
305 case DP_S_CONV:
306 switch (ch) {
307 case 'd':
308 case 'i':
309 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100310 value = va_arg (args, int);
Damien Miller31741252003-05-19 00:13:38 +1000311 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100312 value = va_arg (args, long int);
313 else if (cflags == DP_C_LLONG)
314 value = va_arg (args, LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000315 else if (cflags == DP_C_SIZE)
316 value = va_arg (args, ssize_t);
317 else if (cflags == DP_C_INTMAX)
318 value = va_arg (args, intmax_t);
Damien Miller31741252003-05-19 00:13:38 +1000319 else
320 value = va_arg (args, int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100321 if (fmtint(buffer, &currlen, maxlen,
322 value, 10, min, max, flags) == -1)
323 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000324 break;
325 case 'o':
326 flags |= DP_F_UNSIGNED;
327 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100328 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000329 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100330 value = (long)va_arg (args, unsigned long int);
331 else if (cflags == DP_C_LLONG)
332 value = (long)va_arg (args, unsigned LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000333 else if (cflags == DP_C_SIZE)
334 value = va_arg (args, size_t);
Damien Miller43968a82013-08-28 14:00:54 +1000335#ifdef notyet
Damien Miller04be8b92013-08-28 12:49:43 +1000336 else if (cflags == DP_C_INTMAX)
337 value = va_arg (args, uintmax_t);
Damien Miller43968a82013-08-28 14:00:54 +1000338#endif
Damien Miller31741252003-05-19 00:13:38 +1000339 else
Damien Miller57f39152005-11-24 19:58:19 +1100340 value = (long)va_arg (args, unsigned int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100341 if (fmtint(buffer, &currlen, maxlen, value,
342 8, min, max, flags) == -1)
343 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000344 break;
345 case 'u':
346 flags |= DP_F_UNSIGNED;
347 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100348 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000349 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100350 value = (long)va_arg (args, unsigned long int);
351 else if (cflags == DP_C_LLONG)
352 value = (LLONG)va_arg (args, unsigned LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000353 else if (cflags == DP_C_SIZE)
354 value = va_arg (args, size_t);
Damien Miller43968a82013-08-28 14:00:54 +1000355#ifdef notyet
Damien Miller04be8b92013-08-28 12:49:43 +1000356 else if (cflags == DP_C_INTMAX)
357 value = va_arg (args, uintmax_t);
Damien Miller43968a82013-08-28 14:00:54 +1000358#endif
Damien Miller31741252003-05-19 00:13:38 +1000359 else
Damien Miller57f39152005-11-24 19:58:19 +1100360 value = (long)va_arg (args, unsigned int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100361 if (fmtint(buffer, &currlen, maxlen, value,
362 10, min, max, flags) == -1)
363 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000364 break;
365 case 'X':
366 flags |= DP_F_UP;
367 case 'x':
368 flags |= DP_F_UNSIGNED;
369 if (cflags == DP_C_SHORT)
Damien Miller57f39152005-11-24 19:58:19 +1100370 value = va_arg (args, unsigned int);
Damien Miller31741252003-05-19 00:13:38 +1000371 else if (cflags == DP_C_LONG)
Damien Miller57f39152005-11-24 19:58:19 +1100372 value = (long)va_arg (args, unsigned long int);
373 else if (cflags == DP_C_LLONG)
374 value = (LLONG)va_arg (args, unsigned LLONG);
Damien Miller04be8b92013-08-28 12:49:43 +1000375 else if (cflags == DP_C_SIZE)
376 value = va_arg (args, size_t);
Damien Miller43968a82013-08-28 14:00:54 +1000377#ifdef notyet
Damien Miller04be8b92013-08-28 12:49:43 +1000378 else if (cflags == DP_C_INTMAX)
379 value = va_arg (args, uintmax_t);
Damien Miller43968a82013-08-28 14:00:54 +1000380#endif
Damien Miller31741252003-05-19 00:13:38 +1000381 else
Damien Miller57f39152005-11-24 19:58:19 +1100382 value = (long)va_arg (args, unsigned int);
Damien Miller742cc1c2007-01-14 21:20:30 +1100383 if (fmtint(buffer, &currlen, maxlen, value,
384 16, min, max, flags) == -1)
385 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000386 break;
387 case 'f':
388 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100389 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000390 else
Damien Miller57f39152005-11-24 19:58:19 +1100391 fvalue = va_arg (args, double);
Damien Miller742cc1c2007-01-14 21:20:30 +1100392 if (fmtfp(buffer, &currlen, maxlen, fvalue,
393 min, max, flags) == -1)
394 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000395 break;
396 case 'E':
397 flags |= DP_F_UP;
398 case 'e':
399 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100400 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000401 else
Damien Miller57f39152005-11-24 19:58:19 +1100402 fvalue = va_arg (args, double);
Damien Miller742cc1c2007-01-14 21:20:30 +1100403 if (fmtfp(buffer, &currlen, maxlen, fvalue,
404 min, max, flags) == -1)
405 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000406 break;
407 case 'G':
408 flags |= DP_F_UP;
409 case 'g':
410 if (cflags == DP_C_LDOUBLE)
Damien Miller57f39152005-11-24 19:58:19 +1100411 fvalue = va_arg (args, LDOUBLE);
Damien Miller31741252003-05-19 00:13:38 +1000412 else
Damien Miller57f39152005-11-24 19:58:19 +1100413 fvalue = va_arg (args, double);
Damien Miller742cc1c2007-01-14 21:20:30 +1100414 if (fmtfp(buffer, &currlen, maxlen, fvalue,
415 min, max, flags) == -1)
416 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000417 break;
418 case 'c':
Damien Miller742cc1c2007-01-14 21:20:30 +1100419 DOPR_OUTCH(buffer, currlen, maxlen,
420 va_arg (args, int));
Damien Miller31741252003-05-19 00:13:38 +1000421 break;
422 case 's':
Damien Miller57f39152005-11-24 19:58:19 +1100423 strvalue = va_arg (args, char *);
424 if (!strvalue) strvalue = "(NULL)";
425 if (max == -1) {
426 max = strlen(strvalue);
427 }
428 if (min > 0 && max >= 0 && min > max) max = min;
Damien Miller742cc1c2007-01-14 21:20:30 +1100429 if (fmtstr(buffer, &currlen, maxlen,
430 strvalue, flags, min, max) == -1)
431 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000432 break;
433 case 'p':
Damien Miller57f39152005-11-24 19:58:19 +1100434 strvalue = va_arg (args, void *);
Damien Miller742cc1c2007-01-14 21:20:30 +1100435 if (fmtint(buffer, &currlen, maxlen,
436 (long) strvalue, 16, min, max, flags) == -1)
437 return -1;
Damien Miller31741252003-05-19 00:13:38 +1000438 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000439#if we_dont_want_this_in_openssh
Damien Miller31741252003-05-19 00:13:38 +1000440 case 'n':
441 if (cflags == DP_C_SHORT) {
442 short int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100443 num = va_arg (args, short int *);
Damien Miller31741252003-05-19 00:13:38 +1000444 *num = currlen;
445 } else if (cflags == DP_C_LONG) {
446 long int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100447 num = va_arg (args, long int *);
448 *num = (long int)currlen;
449 } else if (cflags == DP_C_LLONG) {
450 LLONG *num;
451 num = va_arg (args, LLONG *);
452 *num = (LLONG)currlen;
Damien Miller04be8b92013-08-28 12:49:43 +1000453 } else if (cflags == DP_C_SIZE) {
454 ssize_t *num;
455 num = va_arg (args, ssize_t *);
456 *num = (ssize_t)currlen;
457 } else if (cflags == DP_C_INTMAX) {
458 intmax_t *num;
459 num = va_arg (args, intmax_t *);
460 *num = (intmax_t)currlen;
Damien Miller31741252003-05-19 00:13:38 +1000461 } else {
462 int *num;
Damien Miller57f39152005-11-24 19:58:19 +1100463 num = va_arg (args, int *);
Damien Miller31741252003-05-19 00:13:38 +1000464 *num = currlen;
465 }
466 break;
Damien Miller04be8b92013-08-28 12:49:43 +1000467#endif
Damien Miller31741252003-05-19 00:13:38 +1000468 case '%':
Damien Miller742cc1c2007-01-14 21:20:30 +1100469 DOPR_OUTCH(buffer, currlen, maxlen, ch);
Damien Miller31741252003-05-19 00:13:38 +1000470 break;
Damien Miller57f39152005-11-24 19:58:19 +1100471 case 'w':
472 /* not supported yet, treat as next char */
Damien Miller31741252003-05-19 00:13:38 +1000473 ch = *format++;
474 break;
Damien Miller57f39152005-11-24 19:58:19 +1100475 default:
476 /* Unknown, skip */
477 break;
Damien Miller31741252003-05-19 00:13:38 +1000478 }
479 ch = *format++;
480 state = DP_S_DEFAULT;
481 flags = cflags = min = 0;
482 max = -1;
483 break;
484 case DP_S_DONE:
485 break;
Damien Miller57f39152005-11-24 19:58:19 +1100486 default:
487 /* hmm? */
Damien Miller31741252003-05-19 00:13:38 +1000488 break; /* some picky compilers need this */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000489 }
490 }
Damien Miller57f39152005-11-24 19:58:19 +1100491 if (maxlen != 0) {
492 if (currlen < maxlen - 1)
493 buffer[currlen] = '\0';
494 else if (maxlen > 0)
495 buffer[maxlen - 1] = '\0';
496 }
497
Damien Miller742cc1c2007-01-14 21:20:30 +1100498 return currlen < INT_MAX ? (int)currlen : -1;
Damien Miller42b81ff1999-11-26 12:21:24 +1100499}
500
Damien Miller742cc1c2007-01-14 21:20:30 +1100501static int
502fmtstr(char *buffer, size_t *currlen, size_t maxlen,
503 char *value, int flags, int min, int max)
Damien Miller42b81ff1999-11-26 12:21:24 +1100504{
Damien Miller57f39152005-11-24 19:58:19 +1100505 int padlen, strln; /* amount to pad */
506 int cnt = 0;
507
508#ifdef DEBUG_SNPRINTF
509 printf("fmtstr min=%d max=%d s=[%s]\n", min, max, value);
510#endif
511 if (value == 0) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000512 value = "<NULL>";
Damien Miller57f39152005-11-24 19:58:19 +1100513 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000514
Darren Tucker4127f552004-09-23 21:35:09 +1000515 for (strln = 0; strln < max && value[strln]; ++strln); /* strlen */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000516 padlen = min - strln;
517 if (padlen < 0)
518 padlen = 0;
519 if (flags & DP_F_MINUS)
520 padlen = -padlen; /* Left Justify */
Damien Miller57f39152005-11-24 19:58:19 +1100521
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000522 while ((padlen > 0) && (cnt < max)) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100523 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000524 --padlen;
525 ++cnt;
526 }
527 while (*value && (cnt < max)) {
Darren Tucker07877ca2007-01-24 00:07:29 +1100528 DOPR_OUTCH(buffer, *currlen, maxlen, *value);
Damien Miller4d69aea2014-08-22 17:48:27 +1000529 value++;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000530 ++cnt;
531 }
532 while ((padlen < 0) && (cnt < max)) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100533 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000534 ++padlen;
535 ++cnt;
536 }
Damien Miller742cc1c2007-01-14 21:20:30 +1100537 return 0;
Damien Miller42b81ff1999-11-26 12:21:24 +1100538}
539
Damien Miller168e6ac2000-07-11 12:23:01 +1000540/* Have to handle DP_F_NUM (ie 0x and 0 alternates) */
541
Damien Miller742cc1c2007-01-14 21:20:30 +1100542static int
543fmtint(char *buffer, size_t *currlen, size_t maxlen,
Damien Miller4d69aea2014-08-22 17:48:27 +1000544 intmax_t value, int base, int min, int max, int flags)
Damien Miller42b81ff1999-11-26 12:21:24 +1100545{
Damien Miller57f39152005-11-24 19:58:19 +1100546 int signvalue = 0;
Darren Tucker9834cab2006-03-19 00:07:07 +1100547 unsigned LLONG uvalue;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000548 char convert[20];
Damien Miller57f39152005-11-24 19:58:19 +1100549 int place = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000550 int spadlen = 0; /* amount to space pad */
551 int zpadlen = 0; /* amount to zero pad */
Damien Miller57f39152005-11-24 19:58:19 +1100552 int caps = 0;
553
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000554 if (max < 0)
555 max = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100556
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000557 uvalue = value;
Damien Miller57f39152005-11-24 19:58:19 +1100558
559 if(!(flags & DP_F_UNSIGNED)) {
560 if( value < 0 ) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000561 signvalue = '-';
562 uvalue = -value;
Damien Miller57f39152005-11-24 19:58:19 +1100563 } else {
564 if (flags & DP_F_PLUS) /* Do a sign (+/i) */
565 signvalue = '+';
566 else if (flags & DP_F_SPACE)
567 signvalue = ' ';
568 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000569 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000570
Damien Miller57f39152005-11-24 19:58:19 +1100571 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
572
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000573 do {
574 convert[place++] =
Damien Miller57f39152005-11-24 19:58:19 +1100575 (caps? "0123456789ABCDEF":"0123456789abcdef")
576 [uvalue % (unsigned)base ];
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000577 uvalue = (uvalue / (unsigned)base );
Damien Miller57f39152005-11-24 19:58:19 +1100578 } while(uvalue && (place < 20));
579 if (place == 20) place--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000580 convert[place] = 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000581
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000582 zpadlen = max - place;
583 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
Damien Miller57f39152005-11-24 19:58:19 +1100584 if (zpadlen < 0) zpadlen = 0;
585 if (spadlen < 0) spadlen = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000586 if (flags & DP_F_ZERO) {
587 zpadlen = MAX(zpadlen, spadlen);
588 spadlen = 0;
589 }
590 if (flags & DP_F_MINUS)
591 spadlen = -spadlen; /* Left Justifty */
Damien Miller168e6ac2000-07-11 12:23:01 +1000592
Damien Miller57f39152005-11-24 19:58:19 +1100593#ifdef DEBUG_SNPRINTF
594 printf("zpad: %d, spad: %d, min: %d, max: %d, place: %d\n",
595 zpadlen, spadlen, min, max, place);
596#endif
597
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000598 /* Spaces */
599 while (spadlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100600 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000601 --spadlen;
602 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000603
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000604 /* Sign */
605 if (signvalue)
Damien Miller742cc1c2007-01-14 21:20:30 +1100606 DOPR_OUTCH(buffer, *currlen, maxlen, signvalue);
Damien Miller168e6ac2000-07-11 12:23:01 +1000607
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000608 /* Zeros */
609 if (zpadlen > 0) {
610 while (zpadlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100611 DOPR_OUTCH(buffer, *currlen, maxlen, '0');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000612 --zpadlen;
613 }
614 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000615
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000616 /* Digits */
Darren Tucker07877ca2007-01-24 00:07:29 +1100617 while (place > 0) {
618 --place;
619 DOPR_OUTCH(buffer, *currlen, maxlen, convert[place]);
620 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000621
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000622 /* Left Justified spaces */
623 while (spadlen < 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100624 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000625 ++spadlen;
626 }
Damien Miller742cc1c2007-01-14 21:20:30 +1100627 return 0;
Damien Miller42b81ff1999-11-26 12:21:24 +1100628}
629
Damien Miller57f39152005-11-24 19:58:19 +1100630static LDOUBLE abs_val(LDOUBLE value)
Damien Miller42b81ff1999-11-26 12:21:24 +1100631{
Damien Miller57f39152005-11-24 19:58:19 +1100632 LDOUBLE result = value;
Damien Miller42b81ff1999-11-26 12:21:24 +1100633
Damien Miller57f39152005-11-24 19:58:19 +1100634 if (value < 0)
635 result = -value;
636
637 return result;
638}
639
Damien Miller742cc1c2007-01-14 21:20:30 +1100640static LDOUBLE POW10(int val)
Damien Miller57f39152005-11-24 19:58:19 +1100641{
642 LDOUBLE result = 1;
643
Damien Miller742cc1c2007-01-14 21:20:30 +1100644 while (val) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000645 result *= 10;
Damien Miller742cc1c2007-01-14 21:20:30 +1100646 val--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000647 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000648
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000649 return result;
Damien Miller168e6ac2000-07-11 12:23:01 +1000650}
651
Damien Miller57f39152005-11-24 19:58:19 +1100652static LLONG ROUND(LDOUBLE value)
Damien Miller168e6ac2000-07-11 12:23:01 +1000653{
Damien Miller57f39152005-11-24 19:58:19 +1100654 LLONG intpart;
Damien Miller168e6ac2000-07-11 12:23:01 +1000655
Damien Miller57f39152005-11-24 19:58:19 +1100656 intpart = (LLONG)value;
657 value = value - intpart;
658 if (value >= 0.5) intpart++;
659
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000660 return intpart;
Damien Miller168e6ac2000-07-11 12:23:01 +1000661}
662
Damien Miller57f39152005-11-24 19:58:19 +1100663/* a replacement for modf that doesn't need the math library. Should
664 be portable, but slow */
665static double my_modf(double x0, double *iptr)
Damien Miller168e6ac2000-07-11 12:23:01 +1000666{
Damien Miller57f39152005-11-24 19:58:19 +1100667 int i;
668 long l;
669 double x = x0;
670 double f = 1.0;
671
672 for (i=0;i<100;i++) {
673 l = (long)x;
674 if (l <= (x+1) && l >= (x-1)) break;
675 x *= 0.1;
676 f *= 10.0;
677 }
678
679 if (i == 100) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100680 /*
681 * yikes! the number is beyond what we can handle.
682 * What do we do?
683 */
Damien Miller57f39152005-11-24 19:58:19 +1100684 (*iptr) = 0;
685 return 0;
686 }
687
688 if (i != 0) {
689 double i2;
690 double ret;
691
692 ret = my_modf(x0-l*f, &i2);
693 (*iptr) = l*f + i2;
694 return ret;
695 }
696
697 (*iptr) = l;
698 return x - (*iptr);
699}
700
701
Damien Miller742cc1c2007-01-14 21:20:30 +1100702static int
703fmtfp (char *buffer, size_t *currlen, size_t maxlen,
704 LDOUBLE fvalue, int min, int max, int flags)
Damien Miller57f39152005-11-24 19:58:19 +1100705{
706 int signvalue = 0;
707 double ufvalue;
708 char iconvert[311];
709 char fconvert[311];
710 int iplace = 0;
711 int fplace = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000712 int padlen = 0; /* amount to pad */
Damien Miller57f39152005-11-24 19:58:19 +1100713 int zpadlen = 0;
714 int caps = 0;
715 int idx;
716 double intpart;
717 double fracpart;
718 double temp;
Damien Miller168e6ac2000-07-11 12:23:01 +1000719
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000720 /*
721 * AIX manpage says the default is 0, but Solaris says the default
722 * is 6, and sprintf on AIX defaults to 6
723 */
724 if (max < 0)
725 max = 6;
Damien Miller168e6ac2000-07-11 12:23:01 +1000726
Damien Miller57f39152005-11-24 19:58:19 +1100727 ufvalue = abs_val (fvalue);
Damien Miller168e6ac2000-07-11 12:23:01 +1000728
Damien Miller57f39152005-11-24 19:58:19 +1100729 if (fvalue < 0) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000730 signvalue = '-';
Damien Miller57f39152005-11-24 19:58:19 +1100731 } else {
732 if (flags & DP_F_PLUS) { /* Do a sign (+/i) */
733 signvalue = '+';
734 } else {
735 if (flags & DP_F_SPACE)
736 signvalue = ' ';
737 }
738 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000739
Damien Miller57f39152005-11-24 19:58:19 +1100740#if 0
741 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
742#endif
743
744#if 0
745 if (max == 0) ufvalue += 0.5; /* if max = 0 we must round */
746#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000747
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000748 /*
Damien Miller57f39152005-11-24 19:58:19 +1100749 * Sorry, we only support 16 digits past the decimal because of our
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000750 * conversion method
751 */
Damien Miller57f39152005-11-24 19:58:19 +1100752 if (max > 16)
753 max = 16;
Damien Miller168e6ac2000-07-11 12:23:01 +1000754
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000755 /* We "cheat" by converting the fractional part to integer by
756 * multiplying by a factor of 10
757 */
Damien Miller168e6ac2000-07-11 12:23:01 +1000758
Damien Miller57f39152005-11-24 19:58:19 +1100759 temp = ufvalue;
760 my_modf(temp, &intpart);
761
762 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
763
764 if (fracpart >= POW10(max)) {
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000765 intpart++;
Damien Miller57f39152005-11-24 19:58:19 +1100766 fracpart -= POW10(max);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000767 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000768
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000769 /* Convert integer part */
770 do {
Damien Miller57f39152005-11-24 19:58:19 +1100771 temp = intpart*0.1;
772 my_modf(temp, &intpart);
773 idx = (int) ((temp -intpart +0.05)* 10.0);
774 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
775 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000776 iconvert[iplace++] =
Damien Miller57f39152005-11-24 19:58:19 +1100777 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
778 } while (intpart && (iplace < 311));
779 if (iplace == 311) iplace--;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000780 iconvert[iplace] = 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000781
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000782 /* Convert fractional part */
Damien Miller57f39152005-11-24 19:58:19 +1100783 if (fracpart)
784 {
785 do {
786 temp = fracpart*0.1;
787 my_modf(temp, &fracpart);
788 idx = (int) ((temp -fracpart +0.05)* 10.0);
789 /* idx = (int) ((((temp/10) -fracpart) +0.05) *10); */
790 /* printf ("%lf, %lf, %ld\n", temp, fracpart, idx ); */
791 fconvert[fplace++] =
792 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
793 } while(fracpart && (fplace < 311));
794 if (fplace == 311) fplace--;
795 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000796 fconvert[fplace] = 0;
Damien Miller57f39152005-11-24 19:58:19 +1100797
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000798 /* -1 for decimal point, another -1 if we are printing a sign */
799 padlen = min - iplace - max - 1 - ((signvalue) ? 1 : 0);
800 zpadlen = max - fplace;
Damien Miller57f39152005-11-24 19:58:19 +1100801 if (zpadlen < 0) zpadlen = 0;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000802 if (padlen < 0)
803 padlen = 0;
804 if (flags & DP_F_MINUS)
805 padlen = -padlen; /* Left Justifty */
Damien Miller57f39152005-11-24 19:58:19 +1100806
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000807 if ((flags & DP_F_ZERO) && (padlen > 0)) {
808 if (signvalue) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100809 DOPR_OUTCH(buffer, *currlen, maxlen, signvalue);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000810 --padlen;
811 signvalue = 0;
812 }
813 while (padlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100814 DOPR_OUTCH(buffer, *currlen, maxlen, '0');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000815 --padlen;
816 }
817 }
818 while (padlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100819 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000820 --padlen;
821 }
822 if (signvalue)
Damien Miller742cc1c2007-01-14 21:20:30 +1100823 DOPR_OUTCH(buffer, *currlen, maxlen, signvalue);
Damien Miller57f39152005-11-24 19:58:19 +1100824
Darren Tucker07877ca2007-01-24 00:07:29 +1100825 while (iplace > 0) {
826 --iplace;
827 DOPR_OUTCH(buffer, *currlen, maxlen, iconvert[iplace]);
828 }
Damien Miller57f39152005-11-24 19:58:19 +1100829
830#ifdef DEBUG_SNPRINTF
831 printf("fmtfp: fplace=%d zpadlen=%d\n", fplace, zpadlen);
832#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000833
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000834 /*
Damien Miller57f39152005-11-24 19:58:19 +1100835 * Decimal point. This should probably use locale to find the correct
836 * char to print out.
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000837 */
Damien Miller57f39152005-11-24 19:58:19 +1100838 if (max > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100839 DOPR_OUTCH(buffer, *currlen, maxlen, '.');
Damien Miller57f39152005-11-24 19:58:19 +1100840
841 while (zpadlen > 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100842 DOPR_OUTCH(buffer, *currlen, maxlen, '0');
Damien Miller57f39152005-11-24 19:58:19 +1100843 --zpadlen;
844 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000845
Darren Tucker07877ca2007-01-24 00:07:29 +1100846 while (fplace > 0) {
847 --fplace;
848 DOPR_OUTCH(buffer, *currlen, maxlen, fconvert[fplace]);
849 }
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000850 }
Damien Miller168e6ac2000-07-11 12:23:01 +1000851
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000852 while (padlen < 0) {
Damien Miller742cc1c2007-01-14 21:20:30 +1100853 DOPR_OUTCH(buffer, *currlen, maxlen, ' ');
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000854 ++padlen;
855 }
Damien Miller742cc1c2007-01-14 21:20:30 +1100856 return 0;
Damien Miller168e6ac2000-07-11 12:23:01 +1000857}
858#endif /* !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) */
859
Damien Miller57f39152005-11-24 19:58:19 +1100860#if !defined(HAVE_VSNPRINTF)
Darren Tucker07877ca2007-01-24 00:07:29 +1100861int
Damien Miller742cc1c2007-01-14 21:20:30 +1100862vsnprintf (char *str, size_t count, const char *fmt, va_list args)
Damien Miller168e6ac2000-07-11 12:23:01 +1000863{
Damien Miller57f39152005-11-24 19:58:19 +1100864 return dopr(str, count, fmt, args);
Damien Miller168e6ac2000-07-11 12:23:01 +1000865}
Damien Miller57f39152005-11-24 19:58:19 +1100866#endif
Damien Miller168e6ac2000-07-11 12:23:01 +1000867
Damien Miller57f39152005-11-24 19:58:19 +1100868#if !defined(HAVE_SNPRINTF)
Darren Tucker07877ca2007-01-24 00:07:29 +1100869int
870snprintf(char *str, size_t count, SNPRINTF_CONST char *fmt, ...)
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100871{
Damien Miller57f39152005-11-24 19:58:19 +1100872 size_t ret;
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000873 va_list ap;
874
875 va_start(ap, fmt);
Damien Miller57f39152005-11-24 19:58:19 +1100876 ret = vsnprintf(str, count, fmt, ap);
Ben Lindstrom6c92dab2001-02-13 02:18:50 +0000877 va_end(ap);
Damien Miller57f39152005-11-24 19:58:19 +1100878 return ret;
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100879}
Damien Miller57f39152005-11-24 19:58:19 +1100880#endif