2015-08-05 01:30:40 +00:00
|
|
|
#ifndef _SWAY_STRINGOP_H
|
|
|
|
#define _SWAY_STRINGOP_H
|
2018-05-25 11:07:59 +00:00
|
|
|
#include <stdlib.h>
|
2015-08-05 01:30:40 +00:00
|
|
|
#include "list.h"
|
|
|
|
|
2015-09-18 11:27:35 +00: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 21:29:40 +00:00
|
|
|
// array of whitespace characters to use for delims
|
2015-09-18 14:23:04 +00:00
|
|
|
extern const char whitespace[];
|
2015-09-07 21:29:40 +00:00
|
|
|
|
|
|
|
char *strip_whitespace(char *str);
|
2015-08-18 12:39:26 +00:00
|
|
|
char *strip_comments(char *str);
|
2015-09-15 02:59:25 +00:00
|
|
|
void strip_quotes(char *str);
|
2015-08-24 02:09:18 +00:00
|
|
|
|
2018-05-25 11:07:59 +00: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 10:52:58 +00:00
|
|
|
// strcmp that also handles null pointers.
|
|
|
|
int lenient_strcmp(char *a, char *b);
|
|
|
|
|
2015-09-07 21:29:40 +00:00
|
|
|
// Simply split a string with delims, free with `free_flat_list`
|
2015-08-05 01:30:40 +00:00
|
|
|
list_t *split_string(const char *str, const char *delims);
|
|
|
|
void free_flat_list(list_t *list);
|
2015-08-24 02:09:18 +00:00
|
|
|
|
2015-09-07 21:29:40 +00: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 01:30:40 +00: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-13 23:46:16 +00:00
|
|
|
char *join_args(char **argv, int argc);
|
2015-08-20 19:08:13 +00:00
|
|
|
char *join_list(list_t *list, char *separator);
|
2015-08-05 01:30:40 +00:00
|
|
|
|
2016-01-24 23:02:28 +00:00
|
|
|
/**
|
|
|
|
* Add quotes around any argv with whitespaces.
|
|
|
|
*/
|
|
|
|
void add_quotes(char **argv, int argc);
|
|
|
|
|
2015-09-15 02:59:25 +00: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 01:45:48 +00:00
|
|
|
const char *strcasestr(const char *haystack, const char *needle);
|
|
|
|
|
2015-08-05 01:30:40 +00:00
|
|
|
#endif
|