Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snprintf.h « Internal « Source - github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52b866b0f5be6e7d16c581d8244c1c4e887a24ed (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
#ifndef _PORTABLE_SNPRINTF_H_
#define _PORTABLE_SNPRINTF_H_

#ifdef __GNU_LIBRARY__  // We already have these features in GCC
#include <stdio.h>
#else

#define PORTABLE_SNPRINTF_VERSION_MAJOR 2
#define PORTABLE_SNPRINTF_VERSION_MINOR 2

#ifdef HAVE_SNPRINTF
#include <stdio.h>
#else
extern "C" {
extern int snprintf(char *, size_t, const char *, /*args*/...);
}
#ifndef NEED_SNPRINTF_ONLY
extern "C" {
extern int vsnprintf(char *, size_t, const char *, va_list);
}
#endif
#endif

#if defined(HAVE_SNPRINTF) && defined(PREFER_PORTABLE_SNPRINTF)
extern "C" {
extern int portable_snprintf(char *str, size_t str_m, const char *fmt, /*args*/...);
extern int portable_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap);
}
#define snprintf portable_snprintf
#define vsnprintf portable_vsnprintf
#endif

extern "C" {
extern int asprintf(char **ptr, const char *fmt, /*args*/...);
extern int vasprintf(char **ptr, const char *fmt, va_list ap);
extern int asnprintf(char **ptr, size_t str_m, const char *fmt, /*args*/...);
extern int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap);
}

#endif
#endif