aboutsummaryrefslogtreecommitdiff
path: root/include/util.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-07-26 15:21:56 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-07-26 15:21:56 +0530
commit482ce295b52c8d559e935aee4df18c02412e74f2 (patch)
treec7566de999cb3626121415ae0f025927dc4bff1a /include/util.h
parent5e1e5ec7b82f9925556966c28aeb2b71d0813328 (diff)
util: init remove_spaces(), ltrim() and rtrim()
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h
index e0f92f5..7ec1530 100644
--- a/include/util.h
+++ b/include/util.h
@@ -1,6 +1,9 @@
#ifndef __UTIL_H
#define __UTIL_H
+char *ltrim(char *s);
+char *rtrim(char *s);
char *trim(char *s);
+void remove_spaces(char *str);
#endif