2003-04-16 22:42:07 +00:00
|
|
|
/* Implement the vsnprintf function.
|
2024-01-03 11:19:35 +00:00
|
|
|
Copyright (C) 2003-2024 Free Software Foundation, Inc.
|
2003-04-16 22:42:07 +00:00
|
|
|
Written by Kaveh R. Ghazi <ghazi@caip.rutgers.edu>.
|
|
|
|
|
|
|
|
This file is part of the libiberty library. This library is free
|
|
|
|
software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GNU CC; see the file COPYING. If not, write to
|
2005-05-10 15:33:18 +00:00
|
|
|
the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
As a special exception, if you link this library with files
|
|
|
|
compiled with a GNU compiler to produce an executable, this does not cause
|
|
|
|
the resulting executable to be covered by the GNU General Public License.
|
|
|
|
This exception does not however invalidate any other reasons why
|
|
|
|
the executable file might be covered by the GNU General Public License. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
libiberty: documentation markup and order fixes.
libiberty/:
* splay-tree.c: Escape wrapping newlines in texinfo markup
with '@', to fix function declaration output rendering.
* gather-docs: Relax and improve macro name matching to actually
match all current names and to allow input line wrapping.
* bsearch.c, concat.c, crc32.c, fnmatch.txh, fopen_unlocked.c,
hashtab.c, insque.c, make-relative-prefix.c, memchr.c, memcmp.c,
memcpy.c, memmem.c, memmove.c, mempcpy.c, memset.c,
pexecute.txh, random.c, setenv.c, setproctitle.c,
simple-object.txh, snprintf.c, stpncpy.c, strncmp.c, strtod.c,
strtol.c, vasprintf.c, vprintf.c, vsnprintf.c, xmemdup.c:
Wrap long texinfo input lines.
* functions.texi: Regenerate.
From-SVN: r169783
2011-02-03 07:23:20 +00:00
|
|
|
@deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, @
|
|
|
|
const char *@var{format}, va_list @var{ap})
|
2003-04-16 22:42:07 +00:00
|
|
|
|
2009-05-30 05:17:14 +00:00
|
|
|
This function is similar to @code{vsprintf}, but it will write to
|
|
|
|
@var{buf} at most @code{@var{n}-1} bytes of text, followed by a
|
|
|
|
terminating null byte, for a total of @var{n} bytes. On error the
|
|
|
|
return value is -1, otherwise it returns the number of characters that
|
|
|
|
would have been printed had @var{n} been sufficiently large,
|
|
|
|
regardless of the actual value of @var{n}. Note some pre-C99 system
|
|
|
|
libraries do not implement this correctly so users cannot generally
|
|
|
|
rely on the return value if the system version of this function is
|
|
|
|
used.
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "ansidecl.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
|
|
/* This implementation relies on a working vasprintf. */
|
|
|
|
int
|
ternary.h: Don't use PARAMS anymore.
include/
2005-03-27 Gabriel Dos Reis <gdr@integreable-solutions.net>
* ternary.h: Don't use PARAMS anymore.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 6/n.
* strerror.c (init_error_tables, errno_max, strerror,
strerrno,
strtoerrno, main): Use ISO C prototype style.
* strncasecmp.c (strncasecmp): Likewise.
* strncmp.c (strncmp): Likewise.
* strndup.c (strndup): Likewise.
* strrchr.c (strrchr): Likewise.
* strsignal.c (init_signal_tables, signo_max, strsignal,
strsigno, strtosigno, psignal, main): Likewise.
* strstr.c (strstr): Likewise.
* strtod.c (strtod, atof): Likewise.
* strtol.c (strtol): Likewise.
* strtoul.c (strtoul): Likewise.
* ternary.c (ternary_insert, ternary_cleanup, ternary_search,
ternary_recursivesearch): Likewise.
* tmpnam.c (tmpnam): Likewise.
* unlink-if-ordinary.c (unlink_if_ordinary): Likewise.
* vasprintf.c (int_vasprintf, vasprintf, checkit, main):
Likewise.
* vfork.c (vfork): Likewise.
* vfprintf.c (vfprintf): Likewise.
* vprintf.c (vprintf): Likewise.
* vsnprintf.c (vsnprintf, checkit, main): Likewise.
* vsprintf.c (vsprintf): Likewise.
* waitpid.c (waitpid): Likewise.
* xatexit.c (xatexit, xatexit_cleanup): Likewise.
* xexit.c (xexit): Likewise.
* xmalloc.c (xmalloc_set_program_name, xmalloc_failed,
xmalloc,
xcalloc, xrealloc): Likewise.
* xmemdup.c (xmemdup): Likewise.
* xstrdup.c (xstrdup): Likewise.
* xstrerror.c (xstrerror): Likewise.
* xstrndup.c (xstrndup): Likewise.
From-SVN: r97122
2005-03-28 01:28:01 +00:00
|
|
|
vsnprintf (char *s, size_t n, const char *format, va_list ap)
|
2003-04-16 22:42:07 +00:00
|
|
|
{
|
|
|
|
char *buf = 0;
|
|
|
|
int result = vasprintf (&buf, format, ap);
|
|
|
|
|
|
|
|
if (!buf)
|
|
|
|
return -1;
|
|
|
|
if (result < 0)
|
|
|
|
{
|
|
|
|
free (buf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = strlen (buf);
|
|
|
|
if (n > 0)
|
|
|
|
{
|
2003-04-22 19:58:57 +00:00
|
|
|
if ((long) n > result)
|
|
|
|
memcpy (s, buf, result+1);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy (s, buf, n-1);
|
|
|
|
s[n - 1] = 0;
|
|
|
|
}
|
2003-04-16 22:42:07 +00:00
|
|
|
}
|
|
|
|
free (buf);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef TEST
|
|
|
|
/* Set the buffer to a known state. */
|
|
|
|
#define CLEAR(BUF) do { memset ((BUF), 'X', sizeof (BUF)); (BUF)[14] = '\0'; } while (0)
|
|
|
|
/* For assertions. */
|
|
|
|
#define VERIFY(P) do { if (!(P)) abort(); } while (0)
|
|
|
|
|
|
|
|
static int ATTRIBUTE_PRINTF_3
|
ternary.h: Don't use PARAMS anymore.
include/
2005-03-27 Gabriel Dos Reis <gdr@integreable-solutions.net>
* ternary.h: Don't use PARAMS anymore.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 6/n.
* strerror.c (init_error_tables, errno_max, strerror,
strerrno,
strtoerrno, main): Use ISO C prototype style.
* strncasecmp.c (strncasecmp): Likewise.
* strncmp.c (strncmp): Likewise.
* strndup.c (strndup): Likewise.
* strrchr.c (strrchr): Likewise.
* strsignal.c (init_signal_tables, signo_max, strsignal,
strsigno, strtosigno, psignal, main): Likewise.
* strstr.c (strstr): Likewise.
* strtod.c (strtod, atof): Likewise.
* strtol.c (strtol): Likewise.
* strtoul.c (strtoul): Likewise.
* ternary.c (ternary_insert, ternary_cleanup, ternary_search,
ternary_recursivesearch): Likewise.
* tmpnam.c (tmpnam): Likewise.
* unlink-if-ordinary.c (unlink_if_ordinary): Likewise.
* vasprintf.c (int_vasprintf, vasprintf, checkit, main):
Likewise.
* vfork.c (vfork): Likewise.
* vfprintf.c (vfprintf): Likewise.
* vprintf.c (vprintf): Likewise.
* vsnprintf.c (vsnprintf, checkit, main): Likewise.
* vsprintf.c (vsprintf): Likewise.
* waitpid.c (waitpid): Likewise.
* xatexit.c (xatexit, xatexit_cleanup): Likewise.
* xexit.c (xexit): Likewise.
* xmalloc.c (xmalloc_set_program_name, xmalloc_failed,
xmalloc,
xcalloc, xrealloc): Likewise.
* xmemdup.c (xmemdup): Likewise.
* xstrdup.c (xstrdup): Likewise.
* xstrerror.c (xstrerror): Likewise.
* xstrndup.c (xstrndup): Likewise.
From-SVN: r97122
2005-03-28 01:28:01 +00:00
|
|
|
checkit (char *s, size_t n, const char *format, ...)
|
2003-04-16 22:42:07 +00:00
|
|
|
{
|
|
|
|
int result;
|
include
* ansidecl.h (ANSI_PROTOTYPES, PTRCONST, LONG_DOUBLE, PARAMS)
(VPARAMS, VA_START, VA_OPEN, VA_CLOSE, VA_FIXEDARG, CONST)
(VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID, AND, DOTS)
(NOARGS): Don't define.
* libiberty.h (expandargv, writeargv): Don't use PARAMS.
libiberty
* _doprint.c (checkit): Use stdarg, not VA_* macros.
* asprintf.c (asprintf): Use stdarg, not VA_* macros.
* concat.c (concat_length, concat_copy, concat_copy2, concat)
(reconcat): Use stdarg, not VA_* macros.
* snprintf.c (snprintf): Use stdarg, not VA_* macros.
* vasprintf.c (checkit): Use stdarg, not VA_* macros.
* vsnprintf.c (checkit): Use stdarg, not VA_* macros.
From-SVN: r206881
2014-01-21 15:09:10 +00:00
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
2003-04-16 22:42:07 +00:00
|
|
|
result = vsnprintf (s, n, format, ap);
|
include
* ansidecl.h (ANSI_PROTOTYPES, PTRCONST, LONG_DOUBLE, PARAMS)
(VPARAMS, VA_START, VA_OPEN, VA_CLOSE, VA_FIXEDARG, CONST)
(VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID, AND, DOTS)
(NOARGS): Don't define.
* libiberty.h (expandargv, writeargv): Don't use PARAMS.
libiberty
* _doprint.c (checkit): Use stdarg, not VA_* macros.
* asprintf.c (asprintf): Use stdarg, not VA_* macros.
* concat.c (concat_length, concat_copy, concat_copy2, concat)
(reconcat): Use stdarg, not VA_* macros.
* snprintf.c (snprintf): Use stdarg, not VA_* macros.
* vasprintf.c (checkit): Use stdarg, not VA_* macros.
* vsnprintf.c (checkit): Use stdarg, not VA_* macros.
From-SVN: r206881
2014-01-21 15:09:10 +00:00
|
|
|
va_end (ap);
|
2003-04-16 22:42:07 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
ternary.h: Don't use PARAMS anymore.
include/
2005-03-27 Gabriel Dos Reis <gdr@integreable-solutions.net>
* ternary.h: Don't use PARAMS anymore.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 6/n.
* strerror.c (init_error_tables, errno_max, strerror,
strerrno,
strtoerrno, main): Use ISO C prototype style.
* strncasecmp.c (strncasecmp): Likewise.
* strncmp.c (strncmp): Likewise.
* strndup.c (strndup): Likewise.
* strrchr.c (strrchr): Likewise.
* strsignal.c (init_signal_tables, signo_max, strsignal,
strsigno, strtosigno, psignal, main): Likewise.
* strstr.c (strstr): Likewise.
* strtod.c (strtod, atof): Likewise.
* strtol.c (strtol): Likewise.
* strtoul.c (strtoul): Likewise.
* ternary.c (ternary_insert, ternary_cleanup, ternary_search,
ternary_recursivesearch): Likewise.
* tmpnam.c (tmpnam): Likewise.
* unlink-if-ordinary.c (unlink_if_ordinary): Likewise.
* vasprintf.c (int_vasprintf, vasprintf, checkit, main):
Likewise.
* vfork.c (vfork): Likewise.
* vfprintf.c (vfprintf): Likewise.
* vprintf.c (vprintf): Likewise.
* vsnprintf.c (vsnprintf, checkit, main): Likewise.
* vsprintf.c (vsprintf): Likewise.
* waitpid.c (waitpid): Likewise.
* xatexit.c (xatexit, xatexit_cleanup): Likewise.
* xexit.c (xexit): Likewise.
* xmalloc.c (xmalloc_set_program_name, xmalloc_failed,
xmalloc,
xcalloc, xrealloc): Likewise.
* xmemdup.c (xmemdup): Likewise.
* xstrdup.c (xstrdup): Likewise.
* xstrerror.c (xstrerror): Likewise.
* xstrndup.c (xstrndup): Likewise.
From-SVN: r97122
2005-03-28 01:28:01 +00:00
|
|
|
extern int main (void);
|
2003-04-16 22:42:07 +00:00
|
|
|
int
|
ternary.h: Don't use PARAMS anymore.
include/
2005-03-27 Gabriel Dos Reis <gdr@integreable-solutions.net>
* ternary.h: Don't use PARAMS anymore.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 6/n.
* strerror.c (init_error_tables, errno_max, strerror,
strerrno,
strtoerrno, main): Use ISO C prototype style.
* strncasecmp.c (strncasecmp): Likewise.
* strncmp.c (strncmp): Likewise.
* strndup.c (strndup): Likewise.
* strrchr.c (strrchr): Likewise.
* strsignal.c (init_signal_tables, signo_max, strsignal,
strsigno, strtosigno, psignal, main): Likewise.
* strstr.c (strstr): Likewise.
* strtod.c (strtod, atof): Likewise.
* strtol.c (strtol): Likewise.
* strtoul.c (strtoul): Likewise.
* ternary.c (ternary_insert, ternary_cleanup, ternary_search,
ternary_recursivesearch): Likewise.
* tmpnam.c (tmpnam): Likewise.
* unlink-if-ordinary.c (unlink_if_ordinary): Likewise.
* vasprintf.c (int_vasprintf, vasprintf, checkit, main):
Likewise.
* vfork.c (vfork): Likewise.
* vfprintf.c (vfprintf): Likewise.
* vprintf.c (vprintf): Likewise.
* vsnprintf.c (vsnprintf, checkit, main): Likewise.
* vsprintf.c (vsprintf): Likewise.
* waitpid.c (waitpid): Likewise.
* xatexit.c (xatexit, xatexit_cleanup): Likewise.
* xexit.c (xexit): Likewise.
* xmalloc.c (xmalloc_set_program_name, xmalloc_failed,
xmalloc,
xcalloc, xrealloc): Likewise.
* xmemdup.c (xmemdup): Likewise.
* xstrdup.c (xstrdup): Likewise.
* xstrerror.c (xstrerror): Likewise.
* xstrndup.c (xstrndup): Likewise.
From-SVN: r97122
2005-03-28 01:28:01 +00:00
|
|
|
main (void)
|
2003-04-16 22:42:07 +00:00
|
|
|
{
|
|
|
|
char buf[128];
|
|
|
|
int status;
|
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 10, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 9, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 8, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "foobar:\0XXXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 7, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "foobar\0XXXXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 6, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "fooba\0XXXXXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 2, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "f\0XXXXXXXXXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 1, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "\0XXXXXXXXXXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
CLEAR (buf);
|
|
|
|
status = checkit (buf, 0, "%s:%d", "foobar", 9);
|
2003-04-22 19:58:57 +00:00
|
|
|
VERIFY (status==8 && memcmp (buf, "XXXXXXXXXXXXXX\0", 15) == 0);
|
2003-04-16 22:42:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* TEST */
|