#ifndef __UTIL_H #define __UTIL_H char *ltrim(char *s); char *rtrim(char *s); char *trim(char *s); char *remove_spaces(char *str); #endif