From 8e30af66191cb24c856e695c81f3dce5982bc46e Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Wed, 3 Oct 2018 07:00:42 -0400 Subject: [PATCH] forgot file --- include/llarp/str.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/llarp/str.hpp diff --git a/include/llarp/str.hpp b/include/llarp/str.hpp new file mode 100644 index 000000000..505de5292 --- /dev/null +++ b/include/llarp/str.hpp @@ -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