2015-08-04 21:30:40 -04:00
|
|
|
#ifndef _SWAY_STRINGOP_H
|
|
|
|
#define _SWAY_STRINGOP_H
|
|
|
|
|
2019-11-20 22:10:03 -05:00
|
|
|
#include <stdbool.h>
|
2018-11-12 22:23:06 +01:00
|
|
|
#include "list.h"
|
2015-09-18 07:27:35 -04:00
|
|
|
|
2018-12-09 11:52:55 +00:00
|
|
|
void strip_whitespace(char *str);
|
2015-09-14 19:59:25 -07:00
|
|
|
void strip_quotes(char *str);
|
2015-08-23 19:09:18 -07:00
|
|
|
|
2018-05-25 21:07:59 +10:00
|
|
|
// strcat that does nothing if dest or src is NULL
|
|
|
|
char *lenient_strcat(char *dest, const char *src);
|
|
|
|
char *lenient_strncat(char *dest, const char *src, size_t len);
|
|
|
|
|
2015-11-19 11:52:58 +01:00
|
|
|
// strcmp that also handles null pointers.
|
2020-12-03 19:17:42 +00:00
|
|
|
int lenient_strcmp(const char *a, const char *b);
|
2015-11-19 11:52:58 +01:00
|
|
|
|
2018-12-09 01:15:23 +00:00
|
|
|
// Simply split a string with delims, free with `list_free_items_and_destroy`
|
2015-08-04 21:30:40 -04:00
|
|
|
list_t *split_string(const char *str, const char *delims);
|
2015-08-23 19:09:18 -07:00
|
|
|
|
2015-09-07 14:29:40 -07:00
|
|
|
// Splits an argument string, keeping quotes intact
|
|
|
|
char **split_args(const char *str, int *argc);
|
|
|
|
void free_argv(int argc, char **argv);
|
|
|
|
|
2015-08-04 21:30:40 -04:00
|
|
|
int unescape_string(char *string);
|
2015-09-13 19:46:16 -04:00
|
|
|
char *join_args(char **argv, int argc);
|
2015-08-04 21:30:40 -04:00
|
|
|
|
2015-09-14 19:59:25 -07:00
|
|
|
// Split string into 2 by delim, handle quotes
|
2019-06-11 12:10:17 -06:00
|
|
|
char *argsep(char **stringp, const char *delim, char *matched_delim);
|
2015-09-14 19:59:25 -07:00
|
|
|
|
2019-11-20 22:10:03 -05:00
|
|
|
// Expand a path using shell replacements such as $HOME and ~
|
|
|
|
bool expand_path(char **path);
|
|
|
|
|
2015-08-04 21:30:40 -04:00
|
|
|
#endif
|