mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-01 18:39:16 +00:00
userspace/libc: implement strcoll()
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -38,7 +38,7 @@ extern "C"
|
||||
char *strcat(char *restrict, const char *restrict);
|
||||
char *strchr(const char *s, int c);
|
||||
int strcmp(const char *s1, const char *s2);
|
||||
int strcoll(const char *, const char *);
|
||||
int strcoll(const char *s1, const char *s2);
|
||||
int strcoll_l(const char *, const char *, locale_t);
|
||||
char *strcpy(char *restrict, const char *restrict);
|
||||
size_t strcspn(const char *s1, const char *s2);
|
||||
|
Reference in New Issue
Block a user