mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
config modes
This commit is contained in:
parent
afe9cf0be0
commit
71af5b7dde
8 changed files with 261 additions and 232 deletions
|
@ -2,17 +2,25 @@
|
|||
#define _SWAY_STRINGOP_H
|
||||
#include "list.h"
|
||||
|
||||
char *strip_whitespace(char *str, int *trimmed_start);
|
||||
// array of whitespace characters to use for delims
|
||||
extern const char *whitespace;
|
||||
|
||||
char *strip_whitespace(char *str);
|
||||
char *strip_comments(char *str);
|
||||
|
||||
// Must be freed with free_flat_list
|
||||
// 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);
|
||||
|
||||
// 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);
|
||||
|
||||
char *strdup(const char *);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue