ReactOS 0.4.16-dev-2104-gb84fa49
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}
_ACRTIMP int __cdecl strncmp(const char *, const char *, size_t)
Definition: string.c:3330
const GLubyte * c
Definition: glext.h:8905
struct S1 s1
PCWSTR s2
Definition: shell32_main.h:38

◆ _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