1 2 3 4 5 6 7 8
#ifndef __UTIL_H #define __UTIL_H char *ltrim(char *s); char *rtrim(char *s); char *trim(char *s); #endif