Import upstream version 1.28
[debian/tar] / gnu / xvasprintf.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* vasprintf and asprintf with out-of-memory checking.
4    Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #ifndef _XVASPRINTF_H
20 #define _XVASPRINTF_H
21
22 /* Get va_list.  */
23 #include <stdarg.h>
24
25 /* The __attribute__ feature is available in gcc versions 2.5 and later.
26    The __-protected variants of the attributes 'format' and 'printf' are
27    accepted by gcc versions 2.6.4 (effectively 2.7) and later.
28    We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because
29    gnulib and libintl do '#define printf __printf__' when they override
30    the 'printf' function.  */
31 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
32 # define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
33 #else
34 # define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
35 #endif
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 /* Write formatted output to a string dynamically allocated with malloc(),
42    and return it.  Upon [ENOMEM] memory allocation error, call xalloc_die.
43    On some other error
44      - [EOVERFLOW] resulting string length is > INT_MAX,
45      - [EINVAL] invalid format string,
46      - [EILSEQ] error during conversion between wide and multibyte characters,
47    return NULL.  */
48 extern char *xasprintf (const char *format, ...)
49        _GL_ATTRIBUTE_FORMAT ((__printf__, 1, 2));
50 extern char *xvasprintf (const char *format, va_list args)
51        _GL_ATTRIBUTE_FORMAT ((__printf__, 1, 0));
52
53 #ifdef __cplusplus
54 }
55 #endif
56
57 #endif /* _XVASPRINTF_H */