mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +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
|