2015-08-05 01:30:40 +00:00
|
|
|
#ifndef _SWAY_STRINGOP_H
|
|
|
|
#define _SWAY_STRINGOP_H
|
|
|
|
|
2019-11-21 03:10:03 +00:00
|
|
|
#include <stdbool.h>
|
2022-04-23 08:27:47 +00:00
|
|
|
#include <stddef.h>
|
2018-11-12 21:23:06 +00:00
|
|
|
#include "list.h"
|
2015-09-18 11:27:35 +00:00
|
|
|
|
2023-02-28 15:00:28 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define _SWAY_ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end)))
|
|
|
|
#else
|
|
|
|
#define _SWAY_ATTRIB_PRINTF(start, end)
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
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.
|
2020-12-03 19:17:42 +00:00
|
|
|
int lenient_strcmp(const char *a, const char *b);
|
2015-11-19 10:52:58 +00:00
|
|
|
|
2018-12-09 01:15:23 +00:00
|
|
|
// Simply split a string with delims, free with `list_free_items_and_destroy`
|
2015-08-05 01:30:40 +00:00
|
|
|
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);
|
|
|
|
|
2015-08-05 01:30:40 +00:00
|
|
|
int unescape_string(char *string);
|
2015-09-13 23:46:16 +00:00
|
|
|
char *join_args(char **argv, int argc);
|
2015-08-05 01:30:40 +00:00
|
|
|
|
2015-09-15 02:59:25 +00:00
|
|
|
// Split string into 2 by delim, handle quotes
|
2019-06-11 18:10:17 +00:00
|
|
|
char *argsep(char **stringp, const char *delim, char *matched_delim);
|
2015-09-15 02:59:25 +00:00
|
|
|
|
2019-11-21 03:10:03 +00:00
|
|
|
// Expand a path using shell replacements such as $HOME and ~
|
|
|
|
bool expand_path(char **path);
|
|
|
|
|
2023-02-28 15:00:28 +00:00
|
|
|
char *vformat_str(const char *fmt, va_list args) _SWAY_ATTRIB_PRINTF(1, 0);
|
|
|
|
char *format_str(const char *fmt, ...) _SWAY_ATTRIB_PRINTF(1, 2);
|
|
|
|
|
2015-08-05 01:30:40 +00:00
|
|
|
#endif
|