Warning, file /include/root/snprintf.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef ROOT_snprintf
0011 #define ROOT_snprintf
0012
0013 #include <ROOT/RConfig.hxx>
0014 #include <stdio.h>
0015 #ifdef NEED_SNPRINTF
0016
0017 #include <stdarg.h>
0018
0019 #ifdef __cplusplus
0020 extern "C" {
0021 #endif
0022
0023 #ifdef WIN32
0024 #pragma warning( push )
0025 #pragma warning (disable: 4273)
0026 #endif
0027
0028 #ifndef DONTNEED_VSNPRINTF
0029 int vsnprintf(char *string, size_t length, const char *format, va_list args);
0030 #endif
0031 int snprintf(char *string, size_t length, const char *format, ...);
0032
0033 #ifdef WIN32
0034 #pragma warning( pop )
0035 #endif
0036
0037 #ifdef __cplusplus
0038 }
0039 #endif
0040
0041 #endif
0042
0043 #endif