PatchworkOS
Loading...
Searching...
No Matches
strcoll.c
Go to the documentation of this file.
1#include <string.h>
2
3int strcoll(const char* s1, const char* s2)
4{
5 /* FIXME: This should access _pdclib_lc_collate. */
6 return strcmp(s1, s2);
7}
int strcoll(const char *s1, const char *s2)
Definition strcoll.c:3
_PUBLIC int strcmp(const char *s1, const char *s2)
Definition strcmp.c:3