Hello

I need to compare string in a locale-aware manner.
I was using strcoll.

However, I need a case insensitive string comparison.
Does anyone know of a way to achieve that?
I cannot use strcasecmp because it is not locale-aware.

thanks in advance.

    Could you not strtolower() the two strings so that they're both all lower case and then compare them?

      Write a Reply...