opensc/src/common/compat_strnlen.h

9 lines
140 B
C
Raw Normal View History

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