This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
common-tools-tcp-burst/lib/strlcpy.h
2019-07-10 17:54:02 +08:00

13 lines
188 B
C

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