X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmbspcasecmp.c;h=7cde9b76e7bb977acdee9f975fe8f3adc1d8a6e9;hb=7b01a885219f9d3870cedcc5c049a80756271538;hp=7340cafb6b0834c2a2eb2bf5fa7b4a250f9bee5e;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/mbspcasecmp.c b/lib/mbspcasecmp.c index 7340cafb6..7cde9b76e 100644 --- a/lib/mbspcasecmp.c +++ b/lib/mbspcasecmp.c @@ -1,5 +1,5 @@ /* Case-insensitive string comparison function. - Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc. + Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc. Written by Bruno Haible , 2007. This program is free software: you can redistribute it and/or modify @@ -22,9 +22,7 @@ #include -#if HAVE_MBRTOWC -# include "mbuiter.h" -#endif +#include "mbuiter.h" #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) @@ -47,7 +45,6 @@ mbspcasecmp (const char *string, const char *prefix) /* Be careful not to look at the entire extent of STRING or PREFIX until needed. This is useful because when two strings differ, the difference is most often already in the very few first characters. */ -#if HAVE_MBRTOWC if (MB_CUR_MAX > 1) { mbui_iterator_t iter1; @@ -74,7 +71,6 @@ mbspcasecmp (const char *string, const char *prefix) return NULL; } else -#endif { const unsigned char *p1 = (const unsigned char *) string; const unsigned char *p2 = (const unsigned char *) prefix;