mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
20 lines
203 B
C
20 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 */
|