From 9e2cfd90cb5d29612a86a6bd1662d8d5c9f34ed1 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Fri, 5 Mar 2021 13:52:17 -0500 Subject: [PATCH] remove unneeded header --- include/llarp/string.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 include/llarp/string.h diff --git a/include/llarp/string.h b/include/llarp/string.h deleted file mode 100644 index 69c4a7a82..000000000 --- a/include/llarp/string.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef LLARP_STRING_H -#define LLARP_STRING_H - -#include - -#ifndef __FreeBSD__ -#if !(__APPLE__ && __MACH__) -size_t INLINE -strnlen(const char* str, size_t sz) -{ - size_t slen = 0; - while (sz-- && str[slen]) - slen++; - return slen; -} -#endif -#endif - -#endif