STRCSPN

Section: Basic C Library Functions (9)
Updated: February 2011
Index Return to Main Contents
 

NAME

strcspn - Calculate the length of the initial substring of s which does not contain letters in reject  

SYNOPSIS

size_t strcspn(const char * s, const char * reject);
 

ARGUMENTS

s

The string to be searched

reject

The string to avoid
 

COPYRIGHT