aboutsummaryrefslogtreecommitdiff
path: root/utils/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/string.h')
-rw-r--r--utils/string.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/string.h b/utils/string.h
new file mode 100644
index 0000000..a4782cb
--- /dev/null
+++ b/utils/string.h
@@ -0,0 +1,9 @@
+#ifndef __UTILS_STRING_H__
+#define __UTILS_STRING_H__
+#include <string.h>
+
+char *ltrim(char *);
+char *rtrim(char *);
+char *trim(char *);
+
+#endif /* __UTILS_STRING_H__ */