lokinet/include/llarp/string.h

18 lines
272 B
C
Raw Normal View History

2018-04-05 14:23:14 +00:00
#ifndef LLARP_STRING_H
#define LLARP_STRING_H
#include <llarp/common.h>
#ifdef __cplusplus
extern "C" {
#endif
2018-04-05 14:43:16 +00:00
size_t INLINE strnlen(const char* str, size_t sz) {
size_t slen = 0;
while (sz-- && str[slen]) slen++;
return slen;
}
2018-04-05 14:23:14 +00:00
#ifdef __cplusplus
}
#endif
#endif