Thrill  0.1
ends_with.cpp File Reference
#include <tlx/string/ends_with.hpp>
#include <algorithm>
#include <cstring>
#include <tlx/string/to_lower.hpp>
+ Include dependency graph for ends_with.cpp:

Go to the source code of this file.

Namespaces

 tlx
 

Functions

bool ends_with (const char *str, const char *match)
 Checks if the given match string is located at the end of this string. More...
 
bool ends_with (const char *str, const std::string &match)
 Checks if the given match string is located at the end of this string. More...
 
bool ends_with (const std::string &str, const char *match)
 Checks if the given match string is located at the end of this string. More...
 
bool ends_with (const std::string &str, const std::string &match)
 Checks if the given match string is located at the end of this string. More...
 
bool ends_with_icase (const char *str, const char *match)
 
bool ends_with_icase (const char *str, const std::string &match)
 
bool ends_with_icase (const std::string &str, const char *match)
 Checks if the given match string is located at the end of this string. More...
 
bool ends_with_icase (const std::string &str, const std::string &match)
 Checks if the given match string is located at the end of this string. More...