Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
strcoll.c File Reference
#include <string.h>
Include dependency graph for strcoll.c:

Go to the source code of this file.

Functions

int strcoll (const char *l, const char *r)
 

Function Documentation

◆ strcoll()

int strcoll ( const char *  l,
const char *  r 
)

Definition at line 3 of file strcoll.c.

4 {
5  return strcmp(l, r);
6 }
int strcmp(const char *s1, const char *s2)
Compares two null-terminated byte strings lexicographically.
Definition: strcmp.c:12

References strcmp().