Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentcscmp.h
Go to the documentation of this file.
00001 /* $Id: tcscmp.h 30283 2007-11-08 21:06:20Z fireball $ 00002 */ 00003 00004 #include <tchar.h> 00005 00006 int _tcscmp(const _TCHAR* s1, const _TCHAR* s2) 00007 { 00008 while(*s1 == *s2) 00009 { 00010 if(*s1 == 0) return 0; 00011 00012 s1 ++; 00013 s2 ++; 00014 } 00015 00016 return *s1 - *s2; 00017 } 00018 00019 /* EOF */ Generated on Sun May 27 2012 04:36:46 for ReactOS by
1.7.6.1
|