|
STAILQ_NEXT(3) -- implementations of singly-linked
|
These macros define and operate on four types of data structures: singlylinked lists, singly-linked tail queues, lists, and tail queues. All four structures support the following functionality: 1. Ins... |
STAILQ_REMOVE(3) -- implementations of singly-linked
|
These macros define and operate on four types of data structures: singlylinked lists, singly-linked tail queues, lists, and tail queues. All four structures support the following functionality: 1. Ins... |
|
STAILQ_REMOVE_HEAD(3) -- implementations of singly-linked
|
These macros define and operate on four types of data structures: singlylinked lists, singly-linked tail queues, lists, and tail queues. All four structures support the following functionality: 1. Ins... |
standend(3) -- curses character and window attribute control routines
|
These routines manipulate the current attributes of the named window. The current attributes of a window apply to all characters that are written into the window with waddch, waddstr and wprintw. Attr... |
standout(3) -- curses character and window attribute control routines
|
These routines manipulate the current attributes of the named window. The current attributes of a window apply to all characters that are written into the window with waddch, waddstr and wprintw. Attr... |
start_color(3) -- curses color manipulation routines
|
Overview curses support color attributes on terminals with that capability. To use these routines start_color must be called, usually right after initscr. Colors are always used in pairs (referred to ... |
statvfs(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 ... |
stdarg(3) -- variable argument lists
|
A function may be called with a varying number of arguments of varying types. The include file declares a type (va_list) and defines three macros for stepping through a list of arguments wh... |
stdio(3) -- standard input/output library functions
|
The standard I/O library provides a simple and efficient buffered stream I/O interface. Input and output is mapped into logical data streams and the physical I/O characteristics are concealed. The fun... |
stpcpy(3) -- copy strings
|
The stpcpy() and strcpy() functions copy the string src to dst (including the terminating `\0' character.) The strncpy() function copies at most len characters from src into dst. If src is less than... |
strcasecmp(3) -- compare strings, ignoring case
|
The strcasecmp() and strncasecmp() functions compare the null-terminated strings s1 and s2. The strncasecmp() compares at most len characters. |
strcasestr(3) -- locate a substring in a string
|
The strstr() function locates the first occurrence of the null-terminated string little in the null-terminated string big. The strcasestr() function is similar to strstr(), but ignores the case of bot... |
strcat(3) -- concatenate strings
|
The strcat() and strncat() functions append a copy of the null-terminated string append to the end of the null-terminated string s, then add a terminating `\0'. The string s must have sufficient spa... |
strchr(3) -- locate character in string
|
The strchr() function locates the first occurrence of c (converted to a char) in the string pointed to by s. The terminating null character is considered part of the string; therefore if c is `\0', ... |
strcmp(3) -- compare strings
|
The strcmp() and strncmp() functions lexicographically compare the nullterminated strings s1 and s2. The strncmp() function compares not more than len characters. Because strncmp() is designed for com... |