RS41ng/src/strlcpy.h

9 wiersze
129 B
C

#ifndef __STRLCPY_H
#define __STRLCPY_H
#include <sys/types.h>
size_t strlcpy(char *dst, const char *src, size_t siz);
#endif