2015-08-05 03:30:40 +02:00
|
|
|
#ifndef _SWAY_STRINGOP_H
|
|
|
|
#define _SWAY_STRINGOP_H
|
|
|
|
#include "list.h"
|
|
|
|
|
2015-09-07 23:29:40 +02:00
|
|
|
// array of whitespace characters to use for delims
|
|
|
|
extern const char *whitespace;
|
|
|
|
|
|
|
|
char *strip_whitespace(char *str);
|
2015-08-18 14:39:26 +02:00
|
|
|
char *strip_comments(char *str);
|
2015-08-24 04:09:18 +02:00
|
|
|
|
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
|
|
|
|
2015-09-07 23:29:40 +02:00
|
|
|
char *strdup(const char *);
|
2015-08-05 03:30:40 +02:00
|
|
|
#endif
|