|
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... |
store(3) -- database subroutines
|
These functions provide a dbm-compatible interface to the database access methods described in db(3). Each unique record in the database is a key/content pair, the components of which may be any arbit... |
strcasecmp(3) -- compare strings, ignoring case
|
The strcasecmp() and strncasecmp() functions compare the null-terminated strings s1 and s2 and return an integer greater than, equal to, or less than 0, according to whether s1 is lexicographically gr... |
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 ` '. The string s must have sufficient space... |
strchr(3) -- locate first occurrence of a character in a string
|
The strchr() function locates the first occurrence of the character c in the string s. The terminating NUL character is considered part of the string. If c is ` ', strchr() locates the terminating ` ... |
strcmp(3) -- compare strings
|
The strcmp() and strncmp() functions lexicographically compare the nullterminated strings s1 and s2. |
strcoll(3) -- compare strings according to current collation
|
The strcoll() function lexicographically compares the nullterminated strings s1 and s2 according to the current locale collation and returns an integer greater than, equal to, or less than 0, accordin... |
strcpy(3) -- copy strings
|
The strcpy() and strncpy() functions copy the string src to dst (including the terminating ` ' character). strncpy() copies not more than len characters into dst, appending ` ' characters if src is ... |
strcspn(3) -- span the complement of a string
|
The strcspn() function spans the initial part of the nullterminated string s as long as the characters from s do not occur in string charset (it spans the complement of charset). |
strdup(3) -- save a copy of a string
|
The strdup() function allocates sufficient memory for a copy of the string s, does the copy, and returns a pointer to it. The pointer may subsequently be used as an argument to the function free(3). I... |
strerror(3) -- get error message string
|
The strerror() and strerror_r() functions map the error number errnum to a language-dependent error message string. strerror() returns a string containing a maximum of NL_TEXTMAX characters, including... |
strerror_r(3) -- get error message string
|
The strerror() and strerror_r() functions map the error number errnum to a language-dependent error message string. strerror() returns a string containing a maximum of NL_TEXTMAX characters, including... |