1. NAME

skip_spaces - Removes leading whitespace from str.

2. SYNOPSIS

char * skip_spaces(const char *  str );

3. ARGUMENTS

str
    The string to be stripped.

4. DESCRIPTION

Returns a pointer to the first non-whitespace character in str.

5. COPYRIGHT