cmAlgorithms: Add cmHasPrefix to match existing cmHasSuffix

This commit is contained in:
Brad King 2019-02-13 09:22:41 -05:00
parent 557b2d6e65
commit 2ad14ef4ea

View File

@ -336,6 +336,14 @@ std::reverse_iterator<Iter> cmMakeReverseIterator(Iter it)
return std::reverse_iterator<Iter>(it);
}
inline bool cmHasPrefix(std::string const& str, std::string const& prefix)
{
if (str.size() < prefix.size()) {
return false;
}
return str.compare(0, prefix.size(), prefix) == 0;
}
inline bool cmHasSuffix(const std::string& str, const std::string& suffix)
{
if (str.size() < suffix.size()) {