1. NAME

strim - Removes leading and trailing whitespace from s.

2. SYNOPSIS

char * strim(char *  s );

3. ARGUMENTS

s
    The string to be stripped.

4. DESCRIPTION

Note that the first trailing whitespace is replaced with a NUL-terminator in the given string s. Returns a pointer to the first non-whitespace character in s.

5. COPYRIGHT