diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-09-28 18:01:32 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 12:15:10 +0300 |
commit | 4c7a3c1350687d2913a2e008c2c41deceedcdead (patch) | |
tree | 176952b332f8195e2bce8d95ee2129a9c1870ff9 /libbuild2/utility.cxx | |
parent | 0f88ef24789af5761c3c3dd03f9a07f5978aca91 (diff) |
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'libbuild2/utility.cxx')
-rw-r--r-- | libbuild2/utility.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libbuild2/utility.cxx b/libbuild2/utility.cxx index ba50c5a..16bbd85 100644 --- a/libbuild2/utility.cxx +++ b/libbuild2/utility.cxx @@ -360,7 +360,7 @@ namespace build2 find_option (const char* o, const strings& strs, bool ic) { for (const string& s: strs) - if (ic ? casecmp (s, o) == 0 : s == o) + if (ic ? icasecmp (s, o) == 0 : s == o) return true; return false; @@ -370,7 +370,7 @@ namespace build2 find_option (const char* o, const cstrings& cstrs, bool ic) { for (const char* s: cstrs) - if (s != nullptr && (ic ? casecmp (s, o) : strcmp (s, o)) == 0) + if (s != nullptr && (ic ? icasecmp (s, o) : strcmp (s, o)) == 0) return true; return false; @@ -387,7 +387,7 @@ namespace build2 { for (const string& s: strs) for (const char* o: os) - if (ic ? casecmp (s, o) == 0 : s == o) + if (ic ? icasecmp (s, o) == 0 : s == o) return true; return false; @@ -401,7 +401,7 @@ namespace build2 for (const char* s: cstrs) if (s != nullptr) for (const char* o: os) - if ((ic ? casecmp (s, o) : strcmp (s, o)) == 0) + if ((ic ? icasecmp (s, o) : strcmp (s, o)) == 0) return true; return false; @@ -419,7 +419,7 @@ namespace build2 size_t n (strlen (p)); for (const string& s: reverse_iterate (strs)) - if ((ic ? casecmp (s, p, n) : s.compare (0, n, p)) == 0) + if ((ic ? icasecmp (s, p, n) : s.compare (0, n, p)) == 0) return &s; return nullptr; @@ -431,7 +431,7 @@ namespace build2 size_t n (strlen (p)); for (const char* s: reverse_iterate (cstrs)) - if (s != nullptr && (ic ? casecmp (s, p, n) : strncmp (s, p, n)) == 0) + if (s != nullptr && (ic ? icasecmp (s, p, n) : strncmp (s, p, n)) == 0) return s; return nullptr; @@ -453,7 +453,7 @@ namespace build2 for (const string& s: reverse_iterate (strs)) for (const char* p: ps) if ((ic - ? casecmp (s, p, strlen (p)) + ? icasecmp (s, p, strlen (p)) : s.compare (0, strlen (p), p)) == 0) return &s; @@ -469,7 +469,7 @@ namespace build2 if (s != nullptr) for (const char* p: ps) if ((ic - ? casecmp (s, p, strlen (p)) + ? icasecmp (s, p, strlen (p)) : strncmp (s, p, strlen (p))) == 0) return s; |