Functions | |
char* | strstr (char *sz_str_1, char *sz_str_2) |
char* | strcpy (char *sz_destination, char *sz_source) |
int | strncpy (char *sz_destination, char *sz_source, size_t count) |
int | strcmp (char *sz_string_1, char *sz_string_2) |
int | strncmp (char *string_1, char *string_2, size_t count) |
char* | strchr (char *sz_source, char character) |
char* | strrchr (char *sz_source, int character) |
bool | strstarts (char *sz_source, char *sz_start_string) |
bool | strends (char *sz_source, char *sz_tail_string) |
bool | strmatch (char *sz_pattern, char *sz_source) |
bool | is_pattern (char *sz_source) |
char* | skipws (char *sz_source) |
size_t | strlen (char *sz_source) |
char* | strcat (char *sz_destination, char *sz_source) |
char* | trunc_spaces (char *sz_text) |
Some functions for string manipulations. Among these functions you can find ANSI C compatible ones( like strcpy(), strcmp() and others) as well as and functions specific to CyOS (is_pattern(), trunc_spaces(), strends()).
|
Checks whether string contains '*' or '?' characters.
|
|
Skips white spaces.
|
|
Appends one string to another and terminates the resulting string with a null character.
|
|
Finds a character in a string.
|
|
Compares characters from two strings.
|
|
Copies a string, including the terminating null character to the destination buffer.
|
|
Checks whether the string ends with a specified substring.
|
|
Returns the length of a string, not including the terminating null character.
|
|
Checks wildcard match of the string to the pattern.
|
|
Compares characters from two strings.
|
|
Copies the initial count characters of the source string to the destination buffer.
|
|
Scans a string for the last occurrence of a character.
|
|
Checks whether a string starts with a specified substring.
|
|
Finds a substring.
|
|
Removes spaces from the string.
|
Copyright © 2001 Cybiko, Inc. All rights reserved. | More information... |