ReactOS 0.4.15-dev-7907-g95bf896
strcoll.c File Reference
#include <precomp.h>
Include dependency graph for strcoll.c:

Go to the source code of this file.

Functions

int strcoll (const char *s1, const char *s2)
 
int _stricoll (const char *s1, const char *s2)
 

Function Documentation

◆ _stricoll()

int _stricoll ( const char s1,
const char s2 
)

Definition at line 29 of file strcoll.c.

30{
31 return _stricmp(s1, s2);
32}
#define _stricmp
Definition: cat.c:22
struct S1 s1
struct S2 s2

◆ strcoll()

int strcoll ( const char s1,
const char s2 
)

Definition at line 21 of file strcoll.c.

22{
23 return strcmp(s1, s2);
24}
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469