8 extern char *
strstr(
const char *,
const char *);
10 extern int strlen(
char *str);
int32 strncmp(const char *, const char *, int32)
char * strncpy(char *, const char *, int32)
文字列s1に文字列s2をN文字(Byte)分コピーする。
char * strstr(const char *, const char *)
検索対象の文字列Aから文字列Bを探す。
int strlen(char *str)
NULL終端された文字列の長さを返す。NULL終端は長さに含まない。
char * strncat(char *, const char *, int32)
文字列s1の末尾に文字列s2をN文字(Byte)分、結合する。
char * strrchr(const char *, int32)
文字列の後方から指定された文字を探し、最後に見つかった位置をポインタで返す。
char * strchr(const char *, int32)
指定された文字を文字列から探し、最初にに見つかった位置をポインタで返す。
int int32
符号あり32ビット整数(int)
unsigned int uint32
符号なし32ビット整数(unsigned int)
int32 strnlen(const char *, uint32)
NULL終端された文字列の長さを返す。NULL終端は長さに含まない。