/* Case-insensitive string comparison functions.1Copyright (C) 1995-1996, 2001, 2003 Free Software Foundation, Inc.23This program is free software; you can redistribute it and/or modify4it under the terms of the GNU General Public License as published by5the Free Software Foundation; either version 2, or (at your option)6any later version.78This program is distributed in the hope that it will be useful,9but WITHOUT ANY WARRANTY; without even the implied warranty of10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11GNU General Public License for more details.1213You should have received a copy of the GNU General Public License14along with this program; if not, write to the Free Software Foundation,15Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */1617#ifndef _STRCASE_H18#define _STRCASE_H1920#include <stddef.h>2122/* Compare strings S1 and S2, ignoring case, returning less than, equal to or23greater than zero if S1 is lexicographically less than, equal to or greater24than S2.25Note: This function does not work correctly in multibyte locales. */26extern int strcasecmp (const char *s1, const char *s2);2728/* Compare no more than N characters of strings S1 and S2, ignoring case,29returning less than, equal to or greater than zero if S1 is30lexicographically less than, equal to or greater than S2.31Note: This function can not work correctly in multibyte locales. */32extern int strncasecmp (const char *s1, const char *s2, size_t n);3334#endif /* _STRCASE_H */353637