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