I have an assignment where I need to use some system calls in UNIX, like mktime() and fnmatch(), to complete some operations. We re given only the names of the man pages to look up to find the functions.
Now, this is fine for the purpose of the assignment. But in the future when I do UNIX programming, I may not know the exact name (I never would have known fnmatch exists without knowing its name first).
So the question is: how can I get a comprehensive list of ALL UNIX system functions? I really don t care if it s categorized or sorted (though it would be nice), but I d like to have the list include the descriptions so it s searchable. That way when I need a function, I can do a few searches to locate potential candidates, then I can man them to find the exact usage.