tail head cat sleep
QR code linking to this page

manページ  — STRSPN

名称

strspn – 文字列を測る

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <string.h>

size_t
strspn(const char *s, const char *charset);

解説

strspn() 関数は、ヌル文字で終了する文字列 s について、 s から取り出した文字が charset 中に存在する 最初の区間の長さを測ります。

戻り値

strspn() 関数は、測られた文字数を返します。

関連項目

memchr(3), strchr(3), strcspn(3), strpbrk(3), strrchr(3), strsep(3), strstr(3), strtok(3)

規格

strspn() 関数は、 ISO/IEC 9899:1990 ("ISO C90") に適合しています。

STRSPN (3) June 4, 1993

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

C isn't that hard: void (*(*f[])())() defines f as an array of unspecified size, of pointers to functions that return pointers to functions that return void