wcscmp
wcscmp is a C standard library function found in the <cwchar> header file. It is used to compare two wide character strings. The function takes two arguments, `s1` and `s2`, which are pointers to null-terminated wide character strings. It returns an integer value indicating the lexicographical relationship between the two strings.
If `s1` is lexicographically less than `s2`, wcscmp returns a negative value. If `s1` is lexicographically greater
wcscmp is the wide character equivalent of the strcmp function, which compares standard C-style null-terminated byte