this post was submitted on 03 Oct 2023
8 points (100.0% liked)

Linux

8415 readers
428 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
 

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?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] hascat@programming.dev 3 points 2 years ago (1 children)

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 3 points 2 years ago* (last edited 2 years ago)

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