#ifndef STRLCPY_H
#define STRLCPY_H

#include <sys/types.h>

size_t strlcpy(char *, const char *, size_t);

#endif