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