Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
strcoll.c
Go to the documentation of this file.
1 #include <string.h>
2 
3 int strcoll(const char* l, const char* r)
4 {
5  return strcmp(l, r);
6 }
int strcoll(const char *l, const char *r)
Definition: strcoll.c:3
int strcmp(const char *s1, const char *s2)
Compares two null-terminated byte strings lexicographically.
Definition: strcmp.c:12