| /* | |
| * Summary: Windows configuration header | |
| * Description: Windows configuration header | |
| * | |
| * Copy: See Copyright for the status of this software. | |
| * | |
| * Author: Igor Zlatkovic | |
| */ | |
| /* snprintf emulation taken from http://stackoverflow.com/a/8712996/1956010 */ | |
| __inline int c99_vsnprintf(char *outBuf, size_t size, const char *format, va_list ap) | |
| { | |
| int count = -1; | |
| if (size != 0) | |
| count = _vsnprintf_s(outBuf, size, _TRUNCATE, format, ap); | |
| if (count == -1) | |
| count = _vscprintf(format, ap); | |
| return count; | |
| } | |
| __inline int c99_snprintf(char *outBuf, size_t size, const char *format, ...) | |
| { | |
| int count; | |
| va_list ap; | |
| va_start(ap, format); | |
| count = c99_vsnprintf(outBuf, size, format, ap); | |
| va_end(ap); | |
| return count; | |
| } | |