From 482ce295b52c8d559e935aee4df18c02412e74f2 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Sat, 26 Jul 2025 15:21:56 +0530 Subject: util: init remove_spaces(), ltrim() and rtrim() --- include/util.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') 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 -- cgit v1.2.3