You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CBLib/include/cb/string_utils/string_utils.h

15 lines
303 B
C++

#ifndef GODOTHUB_STRING_UTILS_H
#define GODOTHUB_STRING_UTILS_H
#include <string_view>
namespace cb::string {
bool starts_with(std::string_view content, std::string_view begins_with);
bool ends_with(std::string_view content, std::string_view ends_with);
}
#endif //GODOTHUB_STRING_UTILS_H