We get the "missing" version of strlcpy() on Linux, which means
the other @hidecallergraph has to be in src/include/missing-h,
from which src/include/missing.h, which doxygen looks at, is
generated.
int snprintf(char *str, size_t count, char const *fmt, ...);
#endif
-/*
+/**
* Functions from strl{cat,cpy}.c
+ *
+ * @hidecallergraph
*/
#ifndef HAVE_STRLCPY
size_t strlcpy(char *dst, char const *src, size_t siz);
* will be copied. Always NUL terminates (unless siz == 0).
* Returns strlen(src); if retval >= siz, truncation occurred.
*/
+/** @hidecallergraph */
size_t
strlcpy(char *dst, char const *src, size_t siz)
{