lokinet/include/llarp/str.hpp
2018-10-03 07:00:42 -04:00

18 lines
223 B
C++

#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