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,12 @@
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/* Implementation based on musl */
|
||||
|
||||
wchar_t *
|
||||
wmemset(wchar_t *ptr, int val, size_t len)
|
||||
{
|
||||
/* ZZZ unimplemented */
|
||||
return(NULL);
|
||||
wchar_t *ret = ptr;
|
||||
while (len--) *ptr++ = val;
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user