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.

strcasecmp -->function declared implicitly

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

  • 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

  • I can't include <strings.h>  --->   could not open source file "strings.h"


    Is there any something else I should configure on CCS?

  • 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