|
getaddrinfo(3) -- network address and service translation
|
The getaddrinfo(3) function combines the functionality provided by the getipnodebyname(3), getipnodebyaddr(3), getservbyname(3), and get- servbyport(3) functions into a single interface. The thread-sa... |
getcwd(3) -- Get current working directory
|
The getcwd() function copies an absolute pathname of the current working directory to the array pointed to by buf, which is of length size. If the current absolute path name would require a buffer lon... |
|
getdirentries(3) -- get directory entries in a filesystem independent format
|
Read directory entries from the directory specified by fd into buf. At most nbytes are read. Reading starts at offset *basep, and *basep is updated with the new position after reading. |
getenv(3) -- get an environment variable
|
The getenv() function searches the environment list for a string that matches the string pointed to by name. The strings are of the form name = value. |
getgrent(3) -- get group file entry
|
The getgrent() function returns a pointer to a structure containing the group information from /etc/group. The first time it is called it returns the first entry; thereafter, it returns successive ent... |
getgrnam(3) -- get group file entry
|
The getgrnam() function returns a pointer to a structure containing the group information from /etc/group for the entry that matches the group name name. The getgrgid() function returns a pointer to a... |
gethostbyname(3) -- get network host entry
|
The gethostbyname() function returns a structure of type hostent for the given host name. Here name is either a host name, or an IPv4 address in standard dot notation, or an IPv6 address in colon (and... |
getipnodebyname(3) -- get network host names and addresses
|
The getipnodebyname(3) and getipnodebyaddr(3) functions return the names and addresses of a network host. These functions return a pointer to the following structure: struct hostent { char *h_name; ch... |
getloadavg(3) -- get system load averages
|
The getloadavg() function returns the number of processes in the system run queue averaged over various periods of time. Up to nelem samples are retrieved and assigned to successive elements of loadav... |
getlogin(3) -- get user name
|
getlogin returns a pointer to a string containing the name of the user logged in on the controlling terminal of the process, or a null pointer if this information cannot be determined. The string is s... |
getmntent(3) -- get file system descriptor file entry
|
These routines are used to access the file system description file /etc/fstab and the mounted file system description file /etc/mtab. The setmntent() function opens the file system description file fi... |
getnameinfo(3) -- address-to-name translation in protocol-independent manner
|
The getnameinfo(3) function is defined for protocol-independent address-to-nodename translation. It combines the functionality of gethostbyaddr(3) and getservbyport(3) and is the inverse of getad- dri... |
getnetent(3) -- get network entry
|
The getnetent() function reads the next line from the file /etc/net- works and returns a structure netent containing the broken out fields from the line. The /etc/networks file is opened if necessary.... |
getopt(3) -- Parse command line options
|
The getopt() function parses the command line arguments. Its arguments argc and argv are the argument count and array as passed to the main() function on program invocation. An element of argv that st... |
getpass(3) -- get a password
|
This function is obsolete. Do not use it. The getpass() function opens /dev/tty (the controlling terminal of the process), outputs the string prompt, turns off echoing, reads one line (the "password... |