|
fropen(3) -- open a stream
|
The funopen() function associates a stream with up to four ``I/O functions''. Either readfn or writefn must be specified; the others can be given as an appropriately-typed NULL pointer. These I/O fu... |
fscanf(3) -- input format conversion
|
The scanf() family of functions scans input according to a format as described below. This format may contain conversion specifiers; the results from such conversions, if any, are stored through the p... |
|
fseek(3) -- reposition a stream
|
The fseek() function sets the file position indicator for the stream pointed to by stream. The new position, measured in bytes, is obtained by adding offset bytes to the position specified by whence. ... |
fseeko(3) -- reposition a stream
|
The fseek() function sets the file position indicator for the stream pointed to by stream. The new position, measured in bytes, is obtained by adding offset bytes to the position specified by whence. ... |
fsetpos(3) -- reposition a stream
|
The fseek() function sets the file position indicator for the stream pointed to by stream. The new position, measured in bytes, is obtained by adding offset bytes to the position specified by whence. ... |
fstatvfs(3) -- retrieve file system information
|
The statvfs() and fstatvfs() functions fill the structure pointed to by buf with garbage. This garbage will occasionally bear resemblance to file system statistics, but portable applications must not ... |
ftell(3) -- reposition a stream
|
The fseek() function sets the file position indicator for the stream pointed to by stream. The new position, measured in bytes, is obtained by adding offset bytes to the position specified by whence. ... |
ftello(3) -- reposition a stream
|
The fseek() function sets the file position indicator for the stream pointed to by stream. The new position, measured in bytes, is obtained by adding offset bytes to the position specified by whence. ... |
ftime(3) -- get date and time
|
This interface is obsoleted by gettimeofday(2). The ftime() routine fills in a structure pointed to by its argument, as defined by : /* * Structure returned by ftime system call */ struct... |
ftok(3) -- create IPC identifier from path name
|
The ftok() function attempts to create a unique key suitable for use with the msgget(3), semget(2) and shmget(2) functions given the path of an existing file and a user-selectable id. The specified pa... |
ftpio(3) -- FTPIO user library
|
These functions implement a high-level library for managing FTP connections. The ftpLogin() function attempts to log in using the supplied user, passwd, ftp_port (if passed as 0, ftp_port defaults to ... |
ftrylockfile(3) -- stdio locking functions
|
These functions provide explicit application-level locking of stdio streams. They can be used to avoid output from multiple threads being interspersed, input being dispersed among multiple readers, an... |
fts(3) -- traverse a file hierarchy
|
The fts functions are provided for traversing UNIX file hierarchies. A simple overview is that the fts_open() function returns a ``handle'' on a file hierarchy, which is then supplied to the other f... |
fts_children(3) -- traverse a file hierarchy
|
The fts functions are provided for traversing UNIX file hierarchies. A simple overview is that the fts_open() function returns a ``handle'' on a file hierarchy, which is then supplied to the other f... |
fts_close(3) -- traverse a file hierarchy
|
The fts functions are provided for traversing UNIX file hierarchies. A simple overview is that the fts_open() function returns a ``handle'' on a file hierarchy, which is then supplied to the other f... |