|
strftime(3) -- format date and time
|
The strftime() function formats the information from timeptr into the buffer buf according to the string pointed to by format. The format string consists of zero or more conversion specifications and ... |
string(3) -- string specific functions
|
The string functions manipulate strings terminated by a null byte. See the specific manual pages for more information. For manipulating variable length generic objects as byte strings (without the nul... |
|
strlcat(3) -- size-bounded string copying and concatenation
|
The strlcpy() and strlcat() functions copy and concatenate strings respectively. They are designed to be safer, more consistent, and less error prone replacements for strncpy(3) and strncat(3). Unlike... |
strlcpy(3) -- size-bounded string copying and concatenation
|
The strlcpy() and strlcat() functions copy and concatenate strings respectively. They are designed to be safer, more consistent, and less error prone replacements for strncpy(3) and strncat(3). Unlike... |
strlen(3) -- find length of a string
|
The strlen() function computes the length of the string s. |
strmode(3) -- convert inode status information into a symbolic string
|
The strmode() function converts a file mode (the type and permission information associated with an inode, see stat(2)) into a symbolic string which is stored in the location referenced by bp. This st... |
strncasecmp(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... |
strncat(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... |
strncmp(3) -- compare strings
|
The strcmp() and strncmp() functions lexicographically compare the nullterminated strings s1 and s2. |
strncpy(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 ... |
strnvis(3) -- visually encode characters
|
The vis() function copies into dst a string which represents the character c. If c needs no encoding, it is copied in unaltered. The string is null terminated and a pointer to the end of the string is... |
strpbrk(3) -- locate multiple characters in string
|
The strpbrk() function locates in the null-terminated string s the first occurrence of any character in the string charset and returns a pointer to this character. If no characters from charset occur ... |
strptime(3) -- converts a character string to a time value
|
The strptime function converts the character string pointed to by buf to values which are stored in the ``tm'' structure pointed to by tm, using the format specified by format. The format string con... |
strrchr(3) -- locate last occurrence of a character in a string
|
The strrchr() function locates the last occurrence of the character c in the string s. The terminating NUL character is considered part of the string. If c is ` ', strrchr() locates the terminating `... |
strsep(3) -- separate strings
|
The strsep() function locates, in the string referenced by *stringp, the first occurrence of any character in the string delim (or the terminating ` ' character) and replaces it with a ` '. The loca... |