diff --git a/src/str_match.cpp b/src/str_match.cpp index dbfacbd..8208248 100644 --- a/src/str_match.cpp +++ b/src/str_match.cpp @@ -18,7 +18,9 @@ #include "str_match.h" -#include //for tolower() +#include +#include //for tolower() +using namespace std; bool algorithm_name_matches (const std::string& search, const std::string&name) @@ -30,6 +32,13 @@ bool algorithm_name_matches (const std::string& search, return true; } +bool matches_icase (string name, string search) +{ + for_each (name.begin(), name.end(), ::tolower); + for_each (search.begin(), search.end(), ::tolower); + return name.find (search) != name.npos; +} + bool keyspec_matches (const std::string&search, const std::string&name, const std::string&keyid) @@ -43,6 +52,5 @@ bool keyspec_matches (const std::string&search, return true; } - //TODO maybe get case-insensitive - return name.find (search) != name.npos; + return matches_icase (name, search); }