Team: OTHERS Feature or Bugfix:Feature Binary Source:No PrivateCode(Yes/No):No Change-Id: I8bcb92a97a98c61077c55704dec03c997d1246da ChangeID:13439291
9 lines
171 B
C
9 lines
171 B
C
#include <wchar.h>
|
|
|
|
wchar_t *wcschr(const wchar_t *s, wchar_t c)
|
|
{
|
|
if (!c) return (wchar_t *)s + wcslen(s);
|
|
for (; *s && *s != c; s++);
|
|
return *s ? (wchar_t *)s : 0;
|
|
}
|