strcoll_l.c 126 B

1234567
  1. #include <string.h>
  2. #include <locale.h>
  3. int strcoll_l(const char *l, const char *r, locale_t loc)
  4. {
  5. return strcoll(l, r);
  6. }