1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/string.h
sachaaaaa c7940076bf Remove most of the extern "C"
remove extern "C"
2018-07-09 14:34:09 +10:00

19 lines
271 B
C

#ifndef LLARP_STRING_H
#define LLARP_STRING_H
#include <llarp/common.h>
#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