XMMS2
xmmsc_stringport.h
Go to the documentation of this file.
1 #ifndef XMMSC_SNPRINTF_H
2 #define XMMSC_SNPRINTF_H
3 
4 #ifdef _MSC_VER
5 #define snprintf _snprintf
6 #define vsnprintf _vsnprintf
7 #define strcasecmp _stricmp
8 #define strncasecmp _strnicmp
9 #else
10 #include <strings.h>
11 #endif
12 
13 
14 #endif