From: Adam Dickmeiss Date: Tue, 6 Jan 2004 20:21:37 +0000 (+0000) Subject: Use _strnicmp on Windows X-Git-Tag: YAZ.2.0.9.5~5 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=2bfedb1881eea1eb4e158779348794979ca9b681 Use _strnicmp on Windows --- diff --git a/src/comstack.c b/src/comstack.c index 050fcc1..7ed6665 100644 --- a/src/comstack.c +++ b/src/comstack.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2004, Index Data * See the file LICENSE for details. * - * $Id: comstack.c,v 1.3 2004-01-06 19:12:19 adam Exp $ + * $Id: comstack.c,v 1.4 2004-01-06 20:21:37 adam Exp $ */ #include @@ -14,6 +14,10 @@ #include #include +#ifdef WIN32 +#define strncasecmp _strnicmp +#endif + static const char *cs_errlist[] = { "No error or unspecified error",