\r\n
51Degrees Device Detection C/C++
4.3
Newer Version 4.4
A device detection library that is used natively or by 51Degrees products
Search
Documentation
snprintf.h
1
#include <stdio.h>
2
3
#if defined(__MINGW32__) || defined(__MINGW64__)
4
// MinGW Snprintf version is defined based on Windows _Snprintf
5
// which is not standard confirming. Use __mingw_Snprintf which
6
// is standard conforming implementation of Snprintf.
7
#define Snprintf __mingw_snprintf
8
#else
9
// Other non-mingw the default Snprintf is standard conforming.
10
#define Snprintf snprintf
11
#endif
Generated by
doxygen
1.8.15