Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenstrncoll.c
Go to the documentation of this file.
00001 #include <precomp.h> 00002 #include <string.h> 00003 00004 /* Compare S1 and S2, returning less than, equal to or 00005 greater than zero if the collated form of S1 is lexicographically 00006 less than, equal to or greater than the collated form of S2. */ 00007 00008 00009 /* 00010 * @unimplemented 00011 */ 00012 int _strncoll(const char* s1, const char* s2, size_t c) 00013 { 00014 return strncmp(s1, s2, c); 00015 } 00016 00017 /* 00018 * @unimplemented 00019 */ 00020 int _strnicoll(const char* s1, const char* s2, size_t c) 00021 { 00022 return _strnicmp(s1, s2, c); 00023 } Generated on Sun May 27 2012 04:36:39 for ReactOS by
1.7.6.1
|