get man page for c function not system command

c, linux, manpage

Solution

How about `man man`? Then you would find out that `man 3 time` works.

Problem

I want to type "`man time`" and info about the `time.h` time function, but instead I am getting the linux time system command. `man time 2` or `man time 3` doesn't do any different. How can I find the right man page?

Original source