NAME
skipto, skipover - skip to or over characters in a
string
SYNOPSIS
char *skipto (string,charset);
const char *string,*charset;
char *skipover (string,charset);
const char *string,*charset;
DESCRIPTION
Skipto takes two arguments: string, a pointer to a string,
and
charset, a list (string) of characters to be searched for.
Skipto
returns a pointer to the first occurrence within string of
any of
the characters in charset. If no such character is found in
string, then a pointer to the null character terminating
string is
returned.
Skipover performs an identical
function, but looks for the first
character in string which does not occur within charset.
SEE ALSO
index(3), scanf(3)