1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/util/str.hpp
Jason Rhinelander 46242ba69b TrimWhiteSpace -> TrimWhitespace
Fix my dumb initial capitalization choice.
2020-02-24 14:27:44 -04:00

33 lines
599 B
C++

#ifndef LLARP_STR_HPP
#define LLARP_STR_HPP
#include <util/string_view.hpp>
namespace llarp
{
bool
StrEq(const char *s1, const char *s2);
bool
IsFalseValue(string_view str);
struct CaselessLessThan
{
bool
operator()(string_view lhs, string_view rhs) const;
};
bool
IsTrueValue(string_view str);
/// Trim leading and trailing (ascii) whitespace from the given string;
/// returns a string_view of the trimmed part of the string.
#ifdef __GNUG__
[[gnu::warn_unused_result]]
#endif
string_view
TrimWhitespace(string_view str);
} // namespace llarp
#endif