str_match: algorithm name matching

This commit is contained in:
Mirek Kratochvil 2013-04-21 10:20:15 +02:00
parent 03cd5abd73
commit 9e15bf25d2
2 changed files with 58 additions and 0 deletions

31
src/str_match.cpp Normal file
View file

@ -0,0 +1,31 @@
/*
* This file is part of Codecrypt.
*
* Codecrypt is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Codecrypt is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/
#include "str_match.h"
#include <ctype.h> //for tolower()
bool algorithm_name_matches (const std::string& search,
const std::string&name)
{
if (search.length() > name.length() ) return false;
for (size_t i = 0; i < search.length(); ++i)
if (tolower (search[i]) != tolower (name[i]) ) return false;
return true;
}

27
src/str_match.h Normal file
View file

@ -0,0 +1,27 @@
/*
* This file is part of Codecrypt.
*
* Codecrypt is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Codecrypt is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _ccr_str_match_h_
#define _ccr_str_match_h_
#include <string>
bool algorithm_name_matches (const std::string& search,
const std::string&name);
#endif