#line 5 "skip-sp.c-nw"
#include <config.h>

EXPORT char *skip_spaces(char *s)
{
    while (isspace(*s)) s++;
    return s;
}