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

17 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