fix missing stripostfix, and add stricmp (although one should use strcasecmp).

This commit is contained in:
Vítor Manuel de Morais Santos Costa
2009-11-23 13:41:07 +00:00
parent 56d9666197
commit 86715801bf
9 changed files with 2381 additions and 11045 deletions

View File

@@ -80,3 +80,7 @@ extern const char _PL_char_types[]; /* array of character types */
#define toLowerW(c) ((unsigned)(c) <= 'Z' ? (c) + 'a' - 'A' : towlower(c))
#define makeLowerW(c) ((c) >= 'A' && (c) <= 'Z' ? toLower(c) : towlower(c))
#ifndef HAVE_STRICMP
int stricmp(const char *s1, const char *s2);
#endif