How do you discover system builtins for C functions? The man pages for the C functions on Linux are great, but only if you know the name of the function. Is there a way to see a detailed table of contents, or to browse Manpages on a Linux distro?

  • hascat@programming.dev
    link
    fedilink
    English
    arrow-up
    3
    ·
    9 months ago

    man -k xyz will search for any man page with xyz in it. You can also do man stdio to see what’s in the stdio library.

    • mrkite@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      9 months ago

      There’s also apropos which does the same thing but for some reason is easier for me to remember.