I have two postcodes char* that I want to compare, ignoring case. Is there a function to do this?
char*
Or do I have to loop through each use the tolower func
Take a look to strcasecmp() in strings.h.
strings.h