2015-08-05 03:30:40 +02:00
|
|
|
#ifndef _SWAY_STRINGOP_H
|
|
|
|
#define _SWAY_STRINGOP_H
|
|
|
|
#include "list.h"
|
|
|
|
|
2015-09-18 13:27:35 +02:00
|
|
|
#if !HAVE_DECL_SETENV
|
|
|
|
// Not sure why we need to provide this
|
|
|
|
extern int setenv(const char *, const char *, int);
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2015-11-19 11:52:58 +01:00
|
|
|
// strcmp that also handles null pointers.
|
|
|
|
int lenient_strcmp(char *a, char *b);
|
|
|
|
|
2015-09-07 23:29:40 +02:00
|
|
|
// Simply split a string with delims, free with `free_flat_list`
|
2015-08-05 03:30:40 +02:00
|
|
|
list_t *split_string(const char *str, const char *delims);
|
|
|
|
void free_flat_list(list_t *list);
|
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);
|
|
|
|
|
2015-08-05 03:30:40 +02:00
|
|
|
#endif
|