mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00
21 lines
203 B
C
21 lines
203 B
C
![]() |
|
||
|
#include <tchar.h>
|
||
|
|
||
|
_TCHAR * _tcschr(const _TCHAR * s, _XINT c)
|
||
|
{
|
||
|
_TCHAR cc = c;
|
||
|
|
||
|
while(*s)
|
||
|
{
|
||
|
if(*s == cc) return (_TCHAR *)s;
|
||
|
|
||
|
s++;
|
||
|
}
|
||
|
|
||
|
if(cc == 0) return (_TCHAR *)s;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* EOF */
|