문제

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