From 6dd58a30761eca36544c4e815b36907eab084949 Mon Sep 17 00:00:00 2001 From: nirav Date: Thu, 7 Mar 2019 01:27:55 +0530 Subject: Initial commit --- src/string-util.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/string-util.h (limited to 'src/string-util.h') diff --git a/src/string-util.h b/src/string-util.h new file mode 100644 index 0000000..5bf6f11 --- /dev/null +++ b/src/string-util.h @@ -0,0 +1,9 @@ +#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 -- cgit v1.2.3