mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
Implement few wide char functions.
This commit is contained in:
@ -37,9 +37,11 @@
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/* Implementation based on musl */
|
||||
|
||||
wchar_t *
|
||||
wmemchr(const wchar_t *ptr, wchar_t val, size_t len)
|
||||
{
|
||||
/* ZZZ unimplemented */
|
||||
return(NULL);
|
||||
for (; len && *ptr != val; len--, ptr++);
|
||||
return len ? (wchar_t *)ptr : 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user