1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

forgot file

This commit is contained in:
Jeff Becker 2018-10-03 07:00:42 -04:00
parent 8f98ef3e28
commit 8e30af6619
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

17
include/llarp/str.hpp Normal file
View file

@ -0,0 +1,17 @@
#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