exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / c-vsnprintf.h
blob57d689e297ef7901d692f9f30c4586e8b6f12a1a
1 /* vsnprintf in C locale.
2 Copyright (C) 2012-2024 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, see <https://www.gnu.org/licenses/>. */
17 #ifndef _C_VSNPRINTF_H
18 #define _C_VSNPRINTF_H
20 /* This file uses _GL_ATTRIBUTE_FORMAT. */
21 #if !_GL_CONFIG_H_INCLUDED
22 #error "Please include config.h first."
23 #endif
25 /* Get size_t. */
26 #include <stddef.h>
28 /* Get va_list. */
29 #include <stdarg.h>
31 /* Get _GL_ATTRIBUTE_SPEC_PRINTF_STANDARD. */
32 #include <stdio.h>
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
38 extern int c_vsnprintf (char *restrict str, size_t size,
39 const char *format, va_list args)
40 _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF_STANDARD, 3, 0));
42 #ifdef __cplusplus
44 #endif
46 #endif /* _C_VSNPRINTF_H */