Move str.hpp to llarp/

pull/137/head
Michael 6 years ago
parent e887b4e9c7
commit f667d4e81c
No known key found for this signature in database
GPG Key ID: 2D51757B47E2434C

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

@ -1,5 +1,5 @@
#include "llarp/net.hpp"
#include "str.hpp"
#include <str.hpp>
#ifdef ANDROID
#include "android/ifaddrs.h"
#endif
@ -11,7 +11,7 @@
#include <net/if.h>
#endif
#include <cstdio>
#include "logger.hpp"
#include <logger.hpp>
//#include <llarp/net_inaddr.hpp>
#include <llarp/net_addr.hpp>

@ -1,8 +1,8 @@
#include "str.hpp"
#include <str.hpp>
#include <algorithm>
#include <cstring>
#include <string>
#include <algorithm>
namespace llarp
{

@ -1 +1,17 @@
#include <llarp/str.hpp>
#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

Loading…
Cancel
Save