ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

strncoll.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.