diff options
author | nirav <nirav@teisuu.com> | 2019-03-07 01:27:55 +0530 |
---|---|---|
committer | Dandelion <nirav@teisuu.com> | 2019-03-07 01:27:55 +0530 |
commit | 6dd58a30761eca36544c4e815b36907eab084949 (patch) | |
tree | c1bc857a14fffe6f35f7405f133c0ed114aec1a4 /src/string-util.h | |
download | ap_client-6dd58a30761eca36544c4e815b36907eab084949.tar.gz ap_client-6dd58a30761eca36544c4e815b36907eab084949.zip |
Initial commit
Diffstat (limited to 'src/string-util.h')
-rw-r--r-- | src/string-util.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 <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 |