To make strncmp case-insensitive, use strncasecmp from #include <strings. h> . strncasecmp can be used in exactly the same way as strncmp. Note that both of these will not deal with unicode characters correctly, but will work just fine in most applications.
How do you make C not case sensitive?
To make strncmp case-insensitive, use strncasecmp from #include <strings. h> . strncasecmp can be used in exactly the same way as strncmp. Note that both of these will not deal with unicode characters correctly, but will work just fine in most applications.