Go to the source code of this file.
|
converts a true/false string to an int.
|
|
Appends a source string to a destination string.
|
|
Divides a string into two parts. Divide a string buffer into two parts, separated by a separator character. The content of the string is changed by this function!
|
|
Remove leading and trailing whitespaces.
|
|
Split a command line into an argument list. This function splits a command line buffer into commands and arguments. If a number of subsequent whitespaces occurs, the first whitespace (end of substring) will be replaced by 0, and a pointer to the first following non-whitespace character (beginning of substring) will be stored in args[]. The function returns an array of arguments and a pointer to a command string as required by execv & friends. These pointers are addresses in the specified command line buffer.
|
|
A safe wrapper for strncpy. Guarantees that the result is zero-terminated.
|
|
Remove leading and trailing whitespaces from a string.
|