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:
@ -40,6 +40,7 @@
|
||||
wchar_t *
|
||||
wcscpy(wchar_t *dest, const wchar_t *src)
|
||||
{
|
||||
/* ZZZ unimplemented */
|
||||
return(NULL);
|
||||
wchar_t *a = dest;
|
||||
while ((*dest++ = *src++));
|
||||
return a;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user