summaryrefslogtreecommitdiff
path: root/src/port/snprintf.h
blob: 27201a5dd993454984cf12957a52070482032f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
    Copyright (C) 2008 Andreas Baumann <abaumann@yahoo.com>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __SNPRINTF_H
#define __SNPRINTF_H

#include "port/sys.h"
#include "port/sys_internal.h"

/* impose some defaults, if we need snprintf and friends on the platform
 * given, we define the proper values in include/port/sys.h
 */
#ifndef HAVE_CONFIG_H
#define HAVE_CONFIG_H 0
#endif
#define TEST_SNPRINTF 0
#ifndef HAVE_STDARG_H
#define HAVE_STDARG_H 1
#endif
#ifndef HAVE_SYS_TYPES_H
#define HAVE_SYS_TYPES_H 1
#endif
#ifndef HAVE_STDDEF_H
#define HAVE_STDDEF_H 1
#endif
#ifndef HAVE_SYS_TYPES_H
#define HAVE_SYS_TYPES_H 1
#endif
#ifndef HAVE_STDLIB_H
#define HAVE_STDLIB_H 1
#endif
#ifndef HAVE_VA_COPY
#define HAVE_VA_COPY 1
#endif

#if HAVE_STDARG_H
#include <stdarg.h>			/* for va_list */
#endif

#if HAVE_SYS_TYPES_H
#include <sys/types.h>			/* for size_t */
#endif

#endif /* ifndef __SNPRINTF_H */