sway/include/stringop.h

37 lines
1.1 KiB
C
Raw Normal View History

#ifndef _SWAY_STRINGOP_H
#define _SWAY_STRINGOP_H
#include "list.h"
#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);
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
2015-09-07 21:29:40 +00:00
// Simply split a string with delims, free with `free_flat_list`
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);
char *code_strchr(const char *string, char delimiter);
char *code_strstr(const char *haystack, const char *needle);
int unescape_string(char *string);
char *join_args(char **argv, int argc);
char *join_list(list_t *list, char *separator);
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);
#endif