strspn, strcspn - get length of a prefix substring
Standard C library (libc
, -lc
)
#include <string.h>
size_t strspn(const char *s, const char *accept);
size_t strcspn(const char *s, const char *reject);
For an explanation of the terms used in this section, see attributes(7).
Interface | Attribute | Value |
Thread safety | MT-Safe |
C11, POSIX.1-2008.
POSIX.1-2001, C89, SVr4, 4.3BSD.