lokinet/llarp/util/str.hpp

18 lines
223 B
C++
Raw Normal View History

2018-12-12 02:17:40 +00:00
#ifndef LLARP_STR_HPP
#define LLARP_STR_HPP
namespace llarp
{
bool
StrEq(const char *s1, const char *s2);
bool
IsFalseValue(const char *str);
bool
IsTrueValue(const char *str);
} // namespace llarp
#endif