ReactOS 0.4.15-dev-7942-gd23573b
strncoll.c File Reference
#include <precomp.h>
#include <string.h>
Include dependency graph for strncoll.c:

Go to the source code of this file.

Functions

int _strncoll (const char *s1, const char *s2, size_t c)
 
int _strnicoll (const char *s1, const char *s2, size_t c)
 

Function Documentation

◆ _strncoll()

int _strncoll ( const char s1,
const char s2,
size_t  c 
)

Definition at line 12 of file strncoll.c.

13{
14 return strncmp(s1, s2, c);
15}
int strncmp(const char *String1, const char *String2, ACPI_SIZE Count)
Definition: utclib.c:534
const GLubyte * c
Definition: glext.h:8905
struct S1 s1
struct S2 s2

◆ _strnicoll()

int _strnicoll ( const char s1,
const char s2,
size_t  c 
)

Definition at line 20 of file strncoll.c.

21{
22 return _strnicmp(s1, s2, c);
23}
#define _strnicmp(_String1, _String2, _MaxCount)
Definition: compat.h:23