sway/include/stringop.h

35 lines
1009 B
C
Raw Normal View History

#ifndef _SWAY_STRINGOP_H
#define _SWAY_STRINGOP_H
#include <stdbool.h>
#include <stddef.h>
#include "list.h"
2018-12-09 11:52:55 +00:00
void strip_whitespace(char *str);
2015-09-15 02:59:25 +00:00
void strip_quotes(char *str);
2015-08-24 02:09:18 +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(const char *a, const char *b);
2015-11-19 10:52:58 +00:00
// Simply split a string with delims, free with `list_free_items_and_destroy`
list_t *split_string(const char *str, const char *delims);
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);
int unescape_string(char *string);
char *join_args(char **argv, int argc);
2015-09-15 02:59:25 +00:00
// Split string into 2 by delim, handle quotes
char *argsep(char **stringp, const char *delim, char *matched_delim);
2015-09-15 02:59:25 +00:00
// Expand a path using shell replacements such as $HOME and ~
bool expand_path(char **path);
#endif