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

tcsrchr.h
Go to the documentation of this file.
00001 /* $Id: tcsrchr.h 41916 2009-07-12 10:40:39Z ros-arm-bringup $
00002  */
00003 
00004 #include <tchar.h>
00005 
00006 _TCHAR * _tcsrchr(const _TCHAR * s, _XINT c)
00007 {
00008  _TCHAR cc = c;
00009  const _TCHAR * sp = (_TCHAR *)0;
00010 
00011  while(*s)
00012  {
00013   if(*s == cc) sp = s;
00014   s ++;
00015  }
00016 
00017  if(cc == 0) sp = s;
00018 
00019  return (_TCHAR *)sp;
00020 }
00021 
00022 /* EOF */

Generated on Sun May 27 2012 04:36:46 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.