#ifndef _TRIM_H_ #define _TRIM_H_ #include #include char * ltrim(char *s); char * rtrim(char *s); char * trim(char *s); #endif