userspace/libc: implement strcoll()

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-02-14 02:18:40 +02:00
parent 22d01c7a51
commit afa87ec5f3
2 changed files with 12 additions and 2 deletions

View File

@ -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);