XINU
|
指定された文字を文字列から探し、最初にに見つかった位置をポインタで返す。 More...
Go to the source code of this file.
Functions | |
char * | strchr (const char *s, int c) |
指定された文字を文字列から探し、最初にに見つかった位置をポインタで返す。 More... | |
指定された文字を文字列から探し、最初にに見つかった位置をポインタで返す。
Definition in file strchr.c.
char* strchr | ( | const char * | s, |
int | c | ||
) |
指定された文字を文字列から探し、最初にに見つかった位置をポインタで返す。
[in] | s | 探索対象の文字列 |
[in] | c | 検索文字 |