mjansson / foundation_lib

Cross-platform public domain foundation library in C providing basic support data types and functions to write applications and games in a platform-independent fashion.
The Unlicense
296 stars 24 forks source link

Case insensible compare functions #10

Closed emoon closed 8 years ago

emoon commented 9 years ago

Would be nice to have these in string.c/h as one thing one often runs into to is that stricmp may not exist or is named something different (like strcasecmp) depending on platform.

mjansson commented 9 years ago

Sounds reasonable, I will add it

emoon commented 9 years ago

Thanks!

mjansson commented 9 years ago

Added inital wrappers in feature/strcasecmp branch, named string_equal_nocase and string_equal_substr_nocase. Have not yet gone through all platforms though.

emoon commented 9 years ago

Thanks! Sounds good.

mjansson commented 8 years ago

merged to develop branch