wcecompat
wcecompat copied to clipboard
Compatibility Library for missing standard functionality on Windows CE
The function strrchr in wce211_string.c does not decrement p in the loop, so unless c is the last character in s, the function will go into an infinite loop.
Windows CE 6 implements _isctype and _strdup in corelibc, so those functions should be #ifdef'd out. ``` ++ b/src/wce211_string.c @@ -64,6 +64,8 @@ _CRTIMP char* __cdecl strrchr(const char* s, int...
Should return the actual year number minus 1900, but return actual year number directly.