In linux, there is the api for strcasecmp
In CCS, how could I use strcasecmp?
I have include <string.h>, but after I build code, it shows the following warning...
function declared implicitly
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
The compiler RTS does not include the function strcasecmp. A future release will include it. The relevant header file will be <strings.h> . Note this is a different header file from the standard <string.h> .
Thanks and regards,
-George
kuolun tu said:Is there any something else I should configure on CCS?
No. The compiler you are using does not support strings.h and the function strcasecmp. A future release of the compiler will support it.
Thanks and regards,
-George