]> git.cworth.org Git - tar/blob - gnu/xvasprintf.h
upstream: Fix extraction of device nodes.
[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-2010 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 #ifndef __attribute__
26 /* The __attribute__ feature is available in gcc versions 2.5 and later.
27    The __-protected variants of the attributes 'format' and 'printf' are
28    accepted by gcc versions 2.6.4 (effectively 2.7) and later.
29    We enable __attribute__ only if these are supported too, because
30    gnulib and libintl do '#define printf __printf__' when they override
31    the 'printf' function.  */
32 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
33 #  define __attribute__(Spec)   /* empty */
34 # endif
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        __attribute__ ((__format__ (__printf__, 1, 2)));
50 extern char *xvasprintf (const char *format, va_list args)
51        __attribute__ ((__format__ (__printf__, 1, 0)));
52
53 #ifdef __cplusplus
54 }
55 #endif
56
57 #endif /* _XVASPRINTF_H */