Is there a way to find a word within a string in a case insensitive manner?
I would like to find "Word" or "WOrd" or "word" etc... in a C program.
I saw some solutions before posting this question but they don't work anymore or force me to touch the original string to make it all upper cases which is not what I want. Any suggestion to make it?