#ifndef __STRING_UTIL_H #define __STRING_UTIL_H #include size_t strlcpy(char *dst, const char *src, size_t siz); size_t strlcat(char *dst, const char *src, size_t siz); #endif