this should be everything except for some functions where the non-_l version isn't even implemented yet (mainly some non-ISO-C wcs* functions).
7 lines
132 B
C
7 lines
132 B
C
#include <strings.h>
|
|
#include <ctype.h>
|
|
|
|
int strcasecmp_l(const char *l, const char *r, locale_t loc)
|
|
{
|
|
return strcasecmp(l, r);
|
|
}
|