2015-08-05 03:30:40 +02:00
|
|
|
#ifndef _SWAY_STRINGOP_H
|
|
|
|
#define _SWAY_STRINGOP_H
|
|
|
|
|
2018-11-12 22:23:06 +01:00
|
|
|
#include "list.h"
|
2015-09-18 13:27:35 +02:00
|
|
|
|
2015-09-07 23:29:40 +02:00
|
|
|
// array of whitespace characters to use for delims
|
2015-09-18 16:23:04 +02:00
|
|
|
extern const char whitespace[];
|
2015-09-07 23:29:40 +02:00
|
|
|
|
|
|
|
char *strip_whitespace(char *str);
|
2015-08-18 14:39:26 +02:00
|
|
|
char *strip_comments(char *str);
|
2015-09-15 04:59:25 +02:00
|
|
|
void strip_quotes(char *str);
|
2015-08-24 04:09:18 +02:00
|
|
|
|
2018-05-25 13:07:59 +02: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.
|
|
|
|
int lenient_strcmp(char *a, char *b);
|
|
|
|
|
2018-12-09 02:15:23 +01:00
|
|
|
// Simply split a string with delims, free with `list_free_items_and_destroy`
|
2015-08-05 03:30:40 +02:00
|
|
|
list_t *split_string(const char *str, const char *delims);
|
2015-08-24 04:09:18 +02:00
|
|
|
|
2015-09-07 23:29:40 +02: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-05 03:30:40 +02:00
|
|
|
char *code_strchr(const char *string, char delimiter);
|
|
|
|
char *code_strstr(const char *haystack, const char *needle);
|
|
|
|
int unescape_string(char *string);
|
2015-09-14 01:46:16 +02:00
|
|
|
char *join_args(char **argv, int argc);
|
2015-08-20 21:08:13 +02:00
|
|
|
char *join_list(list_t *list, char *separator);
|
2015-08-05 03:30:40 +02:00
|
|
|
|
2016-01-25 00:02:28 +01:00
|
|
|
/**
|
|
|
|
* Add quotes around any argv with whitespaces.
|
|
|
|
*/
|
|
|
|
void add_quotes(char **argv, int argc);
|
|
|
|
|
2015-09-15 04:59:25 +02:00
|
|
|
// split string into 2 by delim.
|
|
|
|
char *cmdsep(char **stringp, const char *delim);
|
|
|
|
// Split string into 2 by delim, handle quotes
|
|
|
|
char *argsep(char **stringp, const char *delim);
|
|
|
|
|
2018-09-01 03:45:48 +02:00
|
|
|
const char *strcasestr(const char *haystack, const char *needle);
|
|
|
|
|
2015-08-05 03:30:40 +02:00
|
|
|
#endif
|