標準のCヘッダファイルに関するドキュメントを含むDebian / Ubuntuパッケージは何ですか?

標準のCヘッダファイルに関するドキュメントを含むDebian / Ubuntuパッケージは何ですか?

後ろにこの問題しかし、次のようなDebian / Ubuntu固有のC標準ライブラリヘッダファイル(ウィキペディアから抜粋)

assert.h , complex.h , ctype.h , errno.h , fenv.h
, float.h , inttypes.h , iso646.h , limits.h , locale.h
, math.h , setjmp.h , signal.h , stdalign.h , stdarg.h
, stdatomic.h , stdbool.h , stddef.h , stdint.h , stdio.h
, stdlib.h , stdnoreturn.h , string.h , tgmath.h , threads.h
, time.h , uchar.h , wchar.h , wctype.h

実行できるようにパッケージ文書をどこで見つけることができるかを知りたいです。

man stdint.h

私は現在Ubuntu 18.04 LTSを使用しています。

ベストアンサー1

人々は第7条その他そして提供される

manpages-posix-devPOSIXシステム開発のためのマニュアルページ。このマニュアルページでは、次の2つの部分で構成されるPOSIXプログラミングインタフェースについて説明します。

  • 7= POSIXヘッダファイル(7posix拡張子を含む)
  • 3= POSIXライブラリ呼び出し(3posix拡張を含む)

インストールしてくださいsudo apt install manpages-posix-dev

パッケージにどのヘッダーが記録されているかを確認できます。

apt-file list manpages-posix-dev |
  sed -e'/\.h\./!d' -e's,.*\/,,' -e's/\.7posix\.gz//'

現在のリストは、

aio.h , arpa_inet.h , assert.h , complex.h , cpio.h
, ctype.h , dirent.h , dlfcn.h , errno.h , fcntl.h
, fenv.h , float.h , fmtmsg.h , fnmatch.h , ftw.h
, glob.h , grp.h , iconv.h , inttypes.h , iso646.h
, langinfo.h , libgen.h , limits.h , locale.h , math.h
, monetary.h , mqueue.h , ndbm.h , net_if.h , netdb.h
, netinet_in.h , netinet_tcp.h , nl_types.h , poll.h , pthread.h
, pwd.h , regex.h , sched.h , search.h , semaphore.h
, setjmp.h , signal.h , spawn.h , stdarg.h , stdbool.h
, stddef.h , stdint.h , stdio.h , stdlib.h , string.h
, strings.h , stropts.h , sys_ipc.h , sys_mman.h , sys_msg.h
, sys_resource.h , sys_select.h , sys_sem.h , sys_shm.h , sys_socket.h
, sys_stat.h , sys_statvfs.h , sys_time.h , sys_times.h , sys_types.h
, sys_uio.h , sys_un.h , sys_utsname.h , sys_wait.h , syslog.h
, tar.h , termios.h , tgmath.h , time.h , trace.h
, ulimit.h , unistd.h , utime.h , utmpx.h , wchar.h
, wctype.h , wordexp.h

おすすめ記事