tail head cat sleep
QR code linking to this page

manページ  — STRPBRK

名称

strpbrk – 複数の文字について文字列の中の位置を探す

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <string.h>

char *
strpbrk(const char *s, const char *charset);

解説

strpbrk() 関数は、文字列 charset のうちのいずれかの文字が、 ヌル文字で終了する文字列 s の中に最初に出現する位置を探し、 その文字へのポインタを返します。 s の中に charset のどの文字も出現しない場合は、 strpbrk() は NULL を返します。

関連項目

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

規格

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

STRPBRK (3) June 4, 1993

tail head cat sleep
QR code linking to this page


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

I'm not interested in developing a powerful brain. All I'm after is just a mediocre brain, something like the President of the American Telephone and Telegraph Company.
— Alan Turing