|
strncasecmp(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. |
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 `\0'. The string s must have sufficient spa... |
|
strncmp(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... |
strncpy(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... |
strnstr(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... |
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) -- parse date and time string
|
The strptime() function parses the string in the buffer buf according to the string pointed to by format, and fills in the elements of the structure pointed to by timeptr. The resulting values will be... |
strrchr(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', ... |
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 `\0' character) and replaces it with a `\0'. The ... |
strsignal(3) -- system signal messages
|
The psignal() and strsignal() functions locate the descriptive message string for a signal number. The strsignal() function accepts a signal number argument sig and returns a pointer to the correspond... |
strspn(3) -- span a string
|
The strspn() function spans the initial part of the null-terminated string s as long as the characters from s occur in string charset. |
strstr(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... |
strtod(3) -- convert ASCII string to floating point
|
These conversion functions convert the initial portion of the string pointed to by nptr to double, float, and long double representation, respectively. The expected form of the string is an optional p... |
strtof(3) -- convert ASCII string to floating point
|
These conversion functions convert the initial portion of the string pointed to by nptr to double, float, and long double representation, respectively. The expected form of the string is an optional p... |
strtofflags(3) -- convert between file flag bits and their string names
|
The fflagstostr() function returns a comma separated string of the file flags represented by flags. If no flags are set a zero length string is returned. If memory cannot be allocated for the return v... |