update for HEAD-2003021201
[reactos.git] / lib / msvcrt / string / strncoll.c
1 #include <windows.h>
2 #include <msvcrt/string.h>
3
4 /* Compare S1 and S2, returning less than, equal to or
5    greater than zero if the collated form of S1 is lexicographically
6    less than, equal to or greater than the collated form of S2.  */
7
8
9 int _strncoll(const char* s1, const char* s2, size_t c)
10 {
11     return strncmp(s1, s2, c);
12 }
13
14 int _strnicoll(const char* s1, const char* s2, size_t c)
15 {
16     return _strnicmp(s1, s2, c);
17 }