mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
20 lines
273 B
C
20 lines
273 B
C
#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
|