#ifndef GODOTHUB_STRING_UTILS_H #define GODOTHUB_STRING_UTILS_H #include 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