X-Git-Url: https://git.saurik.com/apple/system_cmds.git/blobdiff_plain/1a7e3f61d38d679bba59130891c2031b5a0092b6..bd6521f0fc816ab056bc71376f9706a69b3b52c1:/CPPUtil/UtilString.cpp diff --git a/CPPUtil/UtilString.cpp b/CPPUtil/UtilString.cpp new file mode 100644 index 0000000..80d5cc3 --- /dev/null +++ b/CPPUtil/UtilString.cpp @@ -0,0 +1,18 @@ +// +// UtilString.cpp +// CPPUtil +// +// Created by James McIlree on 4/17/13. +// Copyright (c) 2013 Apple. All rights reserved. +// + +#include "CPPUtil.h" + +BEGIN_UTIL_NAMESPACE + +bool ends_with(std::string& str, std::string postfix) { + size_t pos = str.rfind(postfix); + return ((pos != std::string::npos) && (pos == (str.length() - postfix.length()))); +} + +END_UTIL_NAMESPACE