summaryrefslogtreecommitdiff
path: root/src/linker/strlcpy.h
blob: a524530f68670362d06b3d7970893c2216ce72fd (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef STRLCPY_H
#define STRLCPY_H

#include <sys/types.h>
#include <string.h>

size_t
apkenv_strlcpy(char *dst, const char *src, size_t siz);

#endif