MSVC compatibility: Fix r18748, r18761 by replacing strncasecmp() with strnicmp().

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18773 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming
2010-03-01 18:44:49 +00:00
parent ce6381cca8
commit 49658f362a

View File

@@ -49,6 +49,11 @@
#include <windows.h>
#ifdef _MSC_VER
/* In MSVC, the strncasecmp function is available as _strnicmp */
# define strncasecmp _strnicmp
#endif /* _MSC_VER */
char *
get_win32_locale_string (int lctype)
{