#include <string>
Go to the source code of this file.
|
int | compare_icase (const char *a, const char *b) |
| returns +1/0/-1 like strcmp(a, b) but without regard for letter case More...
|
|
int | compare_icase (const char *a, const std::string &b) |
| returns +1/0/-1 like strcmp(a, b) but without regard for letter case More...
|
|
int | compare_icase (const std::string &a, const char *b) |
| returns +1/0/-1 like strcmp(a, b) but without regard for letter case More...
|
|
int | compare_icase (const std::string &a, const std::string &b) |
| returns +1/0/-1 like strcmp(a, b) but without regard for letter case More...
|
|