remove unneeded header

pull/1576/head
Jeff Becker 3 years ago
parent a6715a1f75
commit 9e2cfd90cb
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -1,19 +0,0 @@
#ifndef LLARP_STRING_H
#define LLARP_STRING_H
#include <util/common.hpp>
#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
Loading…
Cancel
Save