mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
list.c: Remove list_foreach
Most occurrences have been replaced by `free_flat_list` which has been moved from stringop.c to list.c. The rest have been replaced by for loops.
This commit is contained in:
parent
0c3f0dfd16
commit
19e831ed3d
11 changed files with 39 additions and 55 deletions
|
@ -97,14 +97,6 @@ list_t *split_string(const char *str, const char *delims) {
|
|||
return res;
|
||||
}
|
||||
|
||||
void free_flat_list(list_t *list) {
|
||||
int i;
|
||||
for (i = 0; i < list->length; ++i) {
|
||||
free(list->items[i]);
|
||||
}
|
||||
list_free(list);
|
||||
}
|
||||
|
||||
char **split_args(const char *start, int *argc) {
|
||||
*argc = 0;
|
||||
int alloc = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue