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

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

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