mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
18 lines
223 B
C++
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
|