Home | History | Annotate | Download | only in musl-locale
      1 #include <strings.h>
      2 #include <ctype.h>
      3 
      4 int strcasecmp_l(const char *l, const char *r, locale_t loc)
      5 {
      6 	return strcasecmp(l, r);
      7 }
      8