ReactOS 0.4.15-dev-7998-gdb93cb1
tcschr.h File Reference
#include <tchar.h>
Include dependency graph for tcschr.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

_TCHAR_tcschr (const _TCHAR *s, _XINT c)
 

Function Documentation

◆ _tcschr()

_TCHAR * _tcschr ( const _TCHAR s,
_XINT  c 
)

Definition at line 4 of file tcschr.h.

5{
6 _TCHAR cc = c;
7
8 while(*s)
9 {
10 if(*s == cc) return (_TCHAR *)s;
11
12 s++;
13 }
14
15 if(cc == 0) return (_TCHAR *)s;
16
17 return 0;
18}
GLdouble s
Definition: gl.h:2039
char _TCHAR
Definition: tchar.h:1392
uint32_t cc
Definition: isohybrid.c:75
#define c
Definition: ke_i.h:80