Header: string.h
Syntax:
extern size_t strcspn
(
const char *string_1,
const char *string_2
);
Purpose: This function computes the length of the initial segment of string_1 which consists entirely of characters not from string_2. Returns length of the segement.
|
|
|