#include int wcscmp(const wchar_t * s1, const wchar_t * s2) { while (*s1 == *s2++) if (*s1++ == 0) return (0); return (*s1 - *--s2); }