Hi Alice,
The old project used expensive commercial toolchain, so we decided to port it to MCUXpresso.
Some .c files from old project contain the following statements:
#include <wctype.h>
#include <wchar.h>
so compiler errors:
fatal error: wctype.h: No such file or directory
although there are those files, but in different folder. Function "wmemcmp" is used in this way:
int diff = wmemcmp(a, b, a_count);
where "a" and "b" declared as "wchar_t *".
Declaration "wchar_t" comes from header "stdlib.h" located in "C:\NXP\MCUXpressoIDE_11.8.0_1165\ide\plugins\com.nxp.mcuxpresso.tools.win32_11.8.0.202306131047\tools\redlib\include" folder, but neither "wctype.h" nor "wchar.h" reside in that folder. Why?
Thank you,
Eugene