opensc/src/common/compat_strlcat.h

9 lines
168 B
C

/**
* @file
* @brief prototypes of strlcpy()/strlcat() imported from OpenBSD
*/
#ifndef HAVE_STRLCAT
size_t strlcat(char *dst, const char *src, size_t siz);
#endif