zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 400486c1578952be60bb96d61879db57fbbcaaf5
parent b4791c96168123fc7894ea2e9768eee5627955fc
Author: fundamental <[email protected]>
Date:   Tue, 26 Jul 2016 15:59:33 -0400

Add Platform Independent Case-Insensitive Compare

Diffstat:
Msrc/Misc/BankDb.cpp | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/src/Misc/BankDb.cpp b/src/Misc/BankDb.cpp @@ -14,9 +14,30 @@ BankEntry::BankEntry(void) :id(0), add(false), pad(false), sub(false) {} +bool platform_strcasestr(const char *hay, const char *needle) +{ + int n = strlen(hay); + int m = strlen(needle); + for(int i=0; i<n; i++) { + int good = 1; + for(int j=0; j<m; ++j) { + if(toupper(hay[i+j]) != toupper(needle[j])) { + good = 0; +break; +} + + } + if(good) + return 1; + } + return 0; + +} + bool sfind(std::string hay, std::string needle) { //return strcasestr(hay.c_str(), needle.c_str()); + return platform_strcasestr(hay.c_str(), needle.c_str()); return false; }