|
scandir(3) -- scan a directory
|
The scandir() function reads the directory dirname and builds an array of pointers to directory entries using malloc(3). It returns the number of entries in the array. A pointer to the array of direct... |
scanf(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... |
|
secure_path(3) -- determine if a file appears to be ``secure''
|
The secure_path() function takes a path name and returns zero if the referenced file is ``secure'', non-zero if not. Any ``insecurity'', other than failure to access the referenced file, will be l... |
seed48(3) -- pseudo random number generators and initialization routines
|
The rand48() family of functions generates pseudo-random numbers using a linear congruential algorithm working on integers 48 bits in size. The particular formula employed is r(n+1) = (a * r(n) + c) m... |
seekdir(3) -- directory operations
|
The opendir() function opens the directory named by filename, associates a directory stream with it and returns a pointer to be used to identify the directory stream in subsequent operations. The poin... |
setbuf(3) -- stream buffering operations
|
The three types of buffering available are unbuffered, block buffered, and line buffered. When an output stream is unbuffered, information appears on the destination file or terminal as soon as writte... |
setbuffer(3) -- stream buffering operations
|
The three types of buffering available are unbuffered, block buffered, and line buffered. When an output stream is unbuffered, information appears on the destination file or terminal as soon as writte... |
setclasscontext(3) -- query login.conf database about a user class
|
The login_getclass() function extracts the entry specified by class (or default if class is NULL or the empty string) from /etc/login.conf (see login.conf(5)). If the entry is found, a login_cap_t poi... |
setdisktab(3) -- get generic disk description by its name
|
The getdiskbyname() function takes a disk name (e.g. `rm03') and returns a prototype disk label describing its geometry information and the standard disk partition tables. All information is obtained... |
setdomainname(3) -- get/set domain name of current host
|
getdomainname() returns the standard domain name for the current processor, as previously set by setdomainname(). The parameter namelen specifies the size of the name array. The returned name is null-... |
setenv(3) -- environment variable functions
|
These functions set, unset and fetch environment variables from the host environment list. For compatibility with differing environment conventions, the given arguments name and value may be appended ... |
setfsent(3) -- get file system descriptor file entry
|
The getfsent(), getfsspec(), and getfsfile() functions each return a pointer to an object with the following structure containing the brokenout fields of a line in the file system description file, |
setgrent(3) -- group database operations
|
These functions operate on the group database file which is described in group(5). Each line of the database is defined by the structure group found in the include file : struct group { char *g... |
setgroupent(3) -- group database operations
|
These functions operate on the group database file which is described in group(5). Each line of the database is defined by the structure group found in the include file : struct group { char *g... |
sethostent(3) -- get network host entry
|
The gethostbyname(), gethostbyname2() and gethostbyaddr() functions each return a pointer to an object with the following structure describing an internet host referenced by name or by address, respec... |