man string
ISO C 文字列ヘッダーが表示されます。
man string.h
Posix C 文字列ヘッダーが表示されます。
man stdio
vsに類似man stdio.h
ただし、特に/usr/include/string.h(memcpyなどがある)にある内容を反映しないなどのAPIman string
はありません。memcpy
なぜこれですか?
答え1
Linuxシステムではman string
いいえstring.h
document "文字列操作"をリストするドキュメント:
stpcpy
,strcasecmp
,strcat
,strchr
,strcmp
,strcoll
,strcpy
,strcspn
,strdup
,strfry
,strlen
,strncat
,strncmp
,strncpy
,strncasecmp
,strpbrk
,strrchr
,strsep
,strspn
,strstr
,strtok
,strxfrm
—index
文字rindex
列演算
ほとんどは で定義され、string.h
一部は で定義されていますstrings.h
。この文書は完全なリストではありませんstring.h
。
同様に、man stdio
技術的には、stdioライブラリの関数をリストするドキュメントはありませんが、stdio.h
実際には結果は基本的に同じです。