strpbrk (9) - Linux Manuals
strpbrk: Find the first occurrence of a set of characters
Command to display strpbrk
manual in Linux: $ man 9 strpbrk
NAME
strpbrk - Find the first occurrence of a set of characters
SYNOPSIS
-
char * strpbrk(const char * cs, const char * ct);
ARGUMENTS
cs
-
- The string to be searched
ct
-
The characters to search for
COPYRIGHT
Pages related to strpbrk
- strpbrk (3) - search a string for any of a set of bytes
- strpbrk (3p) - scan a string for a byte
- strcat (9) - Append one NUL-terminated string to another
- strchr (9) - Find the first occurrence of a character in a string
- strchrnul (9) - Find and return a character in a string, or end of string
- strcmp (9) - Compare two strings
- strcpy (9) - Copy a NUL terminated string
- strcspn (9) - Calculate the length of the initial substring of s which does not contain letters in reject