You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/string.h

25 lines
342 B
C

6 years ago
#ifndef LLARP_STRING_H
#define LLARP_STRING_H
#include <llarp/common.h>
#ifdef __cplusplus
extern "C" {
#endif
6 years ago
#ifndef __FreeBSD__
6 years ago
# if !(__APPLE__ && __MACH__)
size_t INLINE
strnlen(const char* str, size_t sz)
{
6 years ago
size_t slen = 0;
while(sz-- && str[slen])
slen++;
6 years ago
return slen;
}
6 years ago
# endif
#endif
6 years ago
6 years ago
#ifdef __cplusplus
}
#endif
#endif