mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
stringop: lenient_strcmp: Add.
This commit is contained in:
parent
a33e3badad
commit
d0af224e6d
2 changed files with 16 additions and 0 deletions
|
@ -14,6 +14,9 @@ char *strip_whitespace(char *str);
|
|||
char *strip_comments(char *str);
|
||||
void strip_quotes(char *str);
|
||||
|
||||
// strcmp that also handles null pointers.
|
||||
int lenient_strcmp(char *a, char *b);
|
||||
|
||||
// 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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue