Blame lib/vasnprintf.h

Packit Service fdd496
/* vsprintf with automatic memory allocation.
Packit Service fdd496
   Copyright (C) 2002-2004, 2007-2017 Free Software Foundation, Inc.
Packit Service fdd496
Packit Service fdd496
   This program is free software; you can redistribute it and/or modify
Packit Service fdd496
   it under the terms of the GNU General Public License as published by
Packit Service fdd496
   the Free Software Foundation; either version 3, or (at your option)
Packit Service fdd496
   any later version.
Packit Service fdd496
Packit Service fdd496
   This program is distributed in the hope that it will be useful,
Packit Service fdd496
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fdd496
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service fdd496
   GNU General Public License for more details.
Packit Service fdd496
Packit Service fdd496
   You should have received a copy of the GNU General Public License along
Packit Service fdd496
   with this program; if not, see <http://www.gnu.org/licenses/>.  */
Packit Service fdd496
Packit Service fdd496
#ifndef _VASNPRINTF_H
Packit Service fdd496
#define _VASNPRINTF_H
Packit Service fdd496
Packit Service fdd496
/* Get va_list.  */
Packit Service fdd496
#include <stdarg.h>
Packit Service fdd496
Packit Service fdd496
/* Get size_t.  */
Packit Service fdd496
#include <stddef.h>
Packit Service fdd496
Packit Service fdd496
/* The __attribute__ feature is available in gcc versions 2.5 and later.
Packit Service fdd496
   The __-protected variants of the attributes 'format' and 'printf' are
Packit Service fdd496
   accepted by gcc versions 2.6.4 (effectively 2.7) and later.
Packit Service fdd496
   We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because
Packit Service fdd496
   gnulib and libintl do '#define printf __printf__' when they override
Packit Service fdd496
   the 'printf' function.  */
Packit Service fdd496
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
Packit Service fdd496
# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
Packit Service fdd496
#else
Packit Service fdd496
# define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
Packit Service fdd496
#endif
Packit Service fdd496
Packit Service fdd496
#ifdef __cplusplus
Packit Service fdd496
extern "C" {
Packit Service fdd496
#endif
Packit Service fdd496
Packit Service fdd496
/* Write formatted output to a string dynamically allocated with malloc().
Packit Service fdd496
   You can pass a preallocated buffer for the result in RESULTBUF and its
Packit Service fdd496
   size in *LENGTHP; otherwise you pass RESULTBUF = NULL.
Packit Service fdd496
   If successful, return the address of the string (this may be = RESULTBUF
Packit Service fdd496
   if no dynamic memory allocation was necessary) and set *LENGTHP to the
Packit Service fdd496
   number of resulting bytes, excluding the trailing NUL.  Upon error, set
Packit Service fdd496
   errno and return NULL.
Packit Service fdd496
Packit Service fdd496
   When dynamic memory allocation occurs, the preallocated buffer is left
Packit Service fdd496
   alone (with possibly modified contents).  This makes it possible to use
Packit Service fdd496
   a statically allocated or stack-allocated buffer, like this:
Packit Service fdd496
Packit Service fdd496
          char buf[100];
Packit Service fdd496
          size_t len = sizeof (buf);
Packit Service fdd496
          char *output = vasnprintf (buf, &len, format, args);
Packit Service fdd496
          if (output == NULL)
Packit Service fdd496
            ... error handling ...;
Packit Service fdd496
          else
Packit Service fdd496
            {
Packit Service fdd496
              ... use the output string ...;
Packit Service fdd496
              if (output != buf)
Packit Service fdd496
                free (output);
Packit Service fdd496
            }
Packit Service fdd496
  */
Packit Service fdd496
#if REPLACE_VASNPRINTF
Packit Service fdd496
# define asnprintf rpl_asnprintf
Packit Service fdd496
# define vasnprintf rpl_vasnprintf
Packit Service fdd496
#endif
Packit Service fdd496
extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)
Packit Service fdd496
       _GL_ATTRIBUTE_FORMAT ((__printf__, 3, 4));
Packit Service fdd496
extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
Packit Service fdd496
       _GL_ATTRIBUTE_FORMAT ((__printf__, 3, 0));
Packit Service fdd496
Packit Service fdd496
#ifdef __cplusplus
Packit Service fdd496
}
Packit Service fdd496
#endif
Packit Service fdd496
Packit Service fdd496
#endif /* _VASNPRINTF_H */