Blame lib/xvasprintf.h

Packit 33f14e
/* vasprintf and asprintf with out-of-memory checking.
Packit 33f14e
   Copyright (C) 2002-2004, 2006-2017 Free Software Foundation, Inc.
Packit 33f14e
Packit 33f14e
   This program is free software: you can redistribute it and/or modify
Packit 33f14e
   it under the terms of the GNU General Public License as published by
Packit 33f14e
   the Free Software Foundation; either version 3 of the License, or
Packit 33f14e
   (at your option) any later version.
Packit 33f14e
Packit 33f14e
   This program is distributed in the hope that it will be useful,
Packit 33f14e
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 33f14e
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 33f14e
   GNU General Public License for more details.
Packit 33f14e
Packit 33f14e
   You should have received a copy of the GNU General Public License
Packit 33f14e
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 33f14e
Packit 33f14e
#ifndef _XVASPRINTF_H
Packit 33f14e
#define _XVASPRINTF_H
Packit 33f14e
Packit 33f14e
/* Get va_list.  */
Packit 33f14e
#include <stdarg.h>
Packit 33f14e
Packit 33f14e
/* The __attribute__ feature is available in gcc versions 2.5 and later.
Packit 33f14e
   The __-protected variants of the attributes 'format' and 'printf' are
Packit 33f14e
   accepted by gcc versions 2.6.4 (effectively 2.7) and later.
Packit 33f14e
   We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because
Packit 33f14e
   gnulib and libintl do '#define printf __printf__' when they override
Packit 33f14e
   the 'printf' function.  */
Packit 33f14e
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
Packit 33f14e
# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
Packit 33f14e
#else
Packit 33f14e
# define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
Packit 33f14e
#endif
Packit 33f14e
Packit 33f14e
#ifdef __cplusplus
Packit 33f14e
extern "C" {
Packit 33f14e
#endif
Packit 33f14e
Packit 33f14e
/* Write formatted output to a string dynamically allocated with malloc(),
Packit 33f14e
   and return it.  Upon [ENOMEM] memory allocation error, call xalloc_die.
Packit 33f14e
   On some other error
Packit 33f14e
     - [EOVERFLOW] resulting string length is > INT_MAX,
Packit 33f14e
     - [EINVAL] invalid format string,
Packit 33f14e
     - [EILSEQ] error during conversion between wide and multibyte characters,
Packit 33f14e
   return NULL.  */
Packit 33f14e
extern char *xasprintf (const char *format, ...)
Packit 33f14e
       _GL_ATTRIBUTE_FORMAT ((__printf__, 1, 2));
Packit 33f14e
extern char *xvasprintf (const char *format, va_list args)
Packit 33f14e
       _GL_ATTRIBUTE_FORMAT ((__printf__, 1, 0));
Packit 33f14e
Packit 33f14e
#ifdef __cplusplus
Packit 33f14e
}
Packit 33f14e
#endif
Packit 33f14e
Packit 33f14e
#endif /* _XVASPRINTF_H */