mirror of
https://github.com/swaywm/sway.git
synced 2024-11-24 08:51:27 +00:00
style
This commit is contained in:
parent
7dcca7a4b4
commit
d11f3b8f64
|
@ -19,8 +19,8 @@ void list_cat(list_t *list, list_t *source);
|
|||
// ITEM will be NULL after empty list
|
||||
#define list_for(ITEM, LIST) \
|
||||
ITEM = LIST->length ? LIST->items[0] : NULL; \
|
||||
for(int list_it = 0, list_len = LIST->length; \
|
||||
list_it < list_len; \
|
||||
ITEM = LIST->items[++list_it])
|
||||
for (int list_it = 0, list_len = LIST->length; \
|
||||
list_it < list_len; \
|
||||
ITEM = LIST->items[++list_it])
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue