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
pull/1/head
Christian Stimming 16 years ago
parent ce6381cca8
commit 49658f362a

@ -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)
{

Loading…
Cancel
Save