summaryrefslogtreecommitdiff
path: root/src/string-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string-util.h')
-rw-r--r--src/string-util.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/string-util.h b/src/string-util.h
deleted file mode 100644
index 2625765..0000000
--- a/src/string-util.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#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);
-char *str_replace(const char *str, const char *old, const char *new);
-
-#endif