I'm making a android app with crystax Improved Android NDK, and I did it:

 #include <wchar.h>
 wcsncasecmp(L"", L"", 0);

and I getting the follow error:

jni/MooveBike.cpp:30:34: error: 'wcsncasecmp' was not declared in this scope

what i did wrong?

有帮助吗?

解决方案

There shouldn't be such error if all done right. The only case when I were able get the same error as you mentioned, is if wchar.h were included into function body (which is wrong and shouldn't be done) instead of global scope. Include wchar.h at the top of source file (like other include files) and it will work.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top