11#ifndef TLX_STRING_STARTS_WITH_HEADER
12#define TLX_STRING_STARTS_WITH_HEADER
26bool starts_with(
const char* str,
const char* match);
31bool starts_with(
const char* str,
const std::string& match);
36bool starts_with(
const std::string& str,
const char* match);
41bool starts_with(
const std::string& str,
const std::string& match);
bool starts_with(const char *str, const char *match)
Checks if the given match string is located at the start of this string.
bool starts_with_icase(const char *str, const char *match)
Checks if the given match string is located at the start of this string.