Where can I see the list of functions that interact with errno?
In the book "The C Programming Language" it says: "Many of the functions in the library set status indicators when error or end of file occur. These indicators may be set and tested explicitly. In addition, the integer expression errno (declared in <errno.h> ) may contain an error number that gives further information about the most recent error." Where can I see a list of these functions? The standard says this about errno : The value of errno is zero at program startup, but is never set to zero by any library function. The value of errno may be set to nonzero by a library function call