blob: 5bf6f11d258676514bf1aaf828d73e56074b0c9e (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __STRING_UTIL_H
#define __STRING_UTIL_H
#include <sys/types.h>
size_t strlcpy(char *dst, const char *src, size_t siz);
size_t strlcat(char *dst, const char *src, size_t siz);
#endif
|