|
char * | str_concat (char *dst,...) |
|
bool | str_match_end (const char *str, const char *end) |
| Match the end of a string.
|
|
char * | str_fmt (const char *fmt,...) |
| Print formatted output to an allocated string.
|
|
char * | str_escape_fmt (char *dst, const char *src, size_t n) |
| Escape format characters from a string.
|
|
char * | str_quote_meta (const char *src) |
| Quote shell metacharacters in a string.
|
|
char * | str_strip_quotes (char *str) |
| Check and strip possible surrounding quotes in string.
|
|
char * | str_rtrim_spaces (const char *str, char *str_end) |
| Trim possible ending spaces in string.
|
|