lokinet/include/llarp/string.h

20 lines
273 B
C
Raw Normal View History

2018-04-05 14:23:14 +00:00
#ifndef LLARP_STRING_H
#define LLARP_STRING_H
#include <util/common.hpp>
2018-04-05 14:43:16 +00:00
2018-05-29 12:12:47 +00:00
#ifndef __FreeBSD__
2018-06-17 15:26:00 +00:00
#if !(__APPLE__ && __MACH__)
size_t INLINE
strnlen(const char* str, size_t sz)
{
2018-04-05 14:43:16 +00:00
size_t slen = 0;
while(sz-- && str[slen])
slen++;
2018-04-05 14:43:16 +00:00
return slen;
}
2018-06-17 15:26:00 +00:00
#endif
2018-05-29 12:12:47 +00:00
#endif
2018-04-05 14:43:16 +00:00
2018-04-05 14:23:14 +00:00
#endif