opensc/src/common/compat_strnlen.h

10 lines
160 B
C
Raw Normal View History

/**
* @file
* @brief prototype of strnlen() from OpenBSD
*/
#ifndef HAVE_STRNLEN
#include <stddef.h>
2016-02-16 06:11:57 +00:00
size_t strnlen(const char *str, size_t maxlen);
#endif