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,6 @@
|
||||
int
|
||||
wcscmp(const wchar_t *s1, const wchar_t * s2)
|
||||
{
|
||||
/* ZZZ unimplemented */
|
||||
return(0);
|
||||
for (; *s1==*s2 && *s1 && *s2; s1++, s2++);
|
||||
return *s1 - *s2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user