Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentcschr.h
Go to the documentation of this file.
00001 /* $Id: tcschr.h 30283 2007-11-08 21:06:20Z fireball $ 00002 */ 00003 00004 #include <tchar.h> 00005 00006 _TCHAR * _tcschr(const _TCHAR * s, _XINT c) 00007 { 00008 _TCHAR cc = c; 00009 00010 while(*s) 00011 { 00012 if(*s == cc) return (_TCHAR *)s; 00013 00014 s++; 00015 } 00016 00017 if(cc == 0) return (_TCHAR *)s; 00018 00019 return 0; 00020 } 00021 00022 /* EOF */ Generated on Wed May 23 2012 04:34:32 for ReactOS by
1.7.6.1
|