SKIPTO
Section: C Library Functions (3)
Updated: 12/5/79
Index
Return to Main Contents
NAME
skipto, skipover - skip to or over characters in a string
SYNOPSIS
char *skipto (string,charset);
char *string,*charset;
char *skipover (string,charset);
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 occurence 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)
Index
- NAME
-
- SYNOPSIS
-
- DESCRIPTION
-
- SEE ALSO
-
This document was created by
man2html,
using the manual pages.
Time: 11:12:47 GMT, November 04, 2022