summaryrefslogtreecommitdiffstats
path: root/strlcpy.h
blob: 9afbd39c5538d68d1b081afc899f5783ed4cfdae (plain)
1
2
3
4
5
6
7
8
9
#ifndef _STRLCPY_H
#define _STRLCPY_H

#include "config.h"
#ifndef HAVE_STRLCPY
size_t strlcpy(char *dst, const char *src, size_t siz);
#endif /* !HAVE_STRLCPY */

#endif /* _STRLCPY_H */