Loading...
Searching...
No Matches
Go to the documentation of this file.
4#if defined( WIN32 ) || defined( _WIN32 ) || defined( WINCE )
6 #define t_itoa(value, buffer, size, radix) _itoa_s(value, buffer, size, radix)
7 #define t_snprintf(s, n, format, ...) _snprintf_s(s, _TRUNCATE, n, format, __VA_ARGS__)
11 #define t_itoa(value, buffer, size, radix) snprintf(buffer, size, "%d", value)
12 #define t_snprintf(s, n, format, ...) snprintf(s, n, format, __VA_ARGS__)