/* * strfun.h -- * * Created by Tudor DumitraČ™ on 3/22/16 */ #ifndef TRIM_STRINGS_STRFUN_H #define TRIM_STRINGS_STRFUN_H #include // Maximum input line size #define MAXLINE 256 // Function that trims the whitespace at the end of string s // and returns the length of the new string. int trim_string (char s[]); #endif //TRIM_STRINGS_STRFUN_H