2000-05-22 10:09:31 -04:00
|
|
|
/*****************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* In order to be useful for every potential user, curl and libcurl are
|
|
|
|
* dual-licensed under the MPL and the MIT/X-derivate licenses.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the MPL or the MIT/X-derivate
|
|
|
|
* licenses. You may pick one of these licenses.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
|
|
|
*****************************************************************************/
|
2000-05-22 10:09:31 -04:00
|
|
|
|
|
|
|
#include "setup.h"
|
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-05-22 10:09:31 -04:00
|
|
|
int strequal(const char *first, const char *second)
|
|
|
|
{
|
|
|
|
#if defined(HAVE_STRCASECMP)
|
|
|
|
return !strcasecmp(first, second);
|
|
|
|
#elif defined(HAVE_STRCMPI)
|
|
|
|
return !strcmpi(first, second);
|
|
|
|
#elif defined(HAVE_STRICMP)
|
2000-06-14 10:26:20 -04:00
|
|
|
return !stricmp(first, second);
|
2000-05-22 10:09:31 -04:00
|
|
|
#else
|
|
|
|
while (*first && *second) {
|
|
|
|
if (toupper(*first) != toupper(*second)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
first++;
|
|
|
|
second++;
|
|
|
|
}
|
|
|
|
return toupper(*first) == toupper(*second);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int strnequal(const char *first, const char *second, size_t max)
|
|
|
|
{
|
|
|
|
#if defined(HAVE_STRCASECMP)
|
|
|
|
return !strncasecmp(first, second, max);
|
|
|
|
#elif defined(HAVE_STRCMPI)
|
|
|
|
return !strncmpi(first, second, max);
|
|
|
|
#elif defined(HAVE_STRICMP)
|
|
|
|
return !strnicmp(first, second, max);
|
|
|
|
#else
|
|
|
|
while (*first && *second && max) {
|
|
|
|
if (toupper(*first) != toupper(*second)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
max--;
|
|
|
|
first++;
|
|
|
|
second++;
|
|
|
|
}
|
|
|
|
return toupper(*first) == toupper(*second);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|