XMMS2
src/include/xmmsc/xmmsc_stringport.h
Go to the documentation of this file.
00001 #ifndef XMMSC_SNPRINTF_H
00002 #define XMMSC_SNPRINTF_H
00003 
00004 #ifdef _MSC_VER
00005 #define snprintf _snprintf
00006 #define vsnprintf _vsnprintf
00007 #define strcasecmp _stricmp
00008 #define strncasecmp _strnicmp
00009 #else
00010 #include <strings.h>
00011 #endif
00012 
00013 
00014 #endif