diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-26 15:21:56 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-26 15:21:56 +0530 |
commit | 482ce295b52c8d559e935aee4df18c02412e74f2 (patch) | |
tree | c7566de999cb3626121415ae0f025927dc4bff1a /include/util.h | |
parent | 5e1e5ec7b82f9925556966c28aeb2b71d0813328 (diff) |
util: init remove_spaces(), ltrim() and rtrim()
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 3 |
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 |