lokinet/include/llarp/string.h
2018-05-31 06:06:53 -07:00

25 lines
342 B
C

#ifndef LLARP_STRING_H
#define LLARP_STRING_H
#include <llarp/common.h>
#ifdef __cplusplus
extern "C" {
#endif
#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
#ifdef __cplusplus
}
#endif
#endif