mirror of
https://github.com/swaywm/sway.git
synced 2024-11-24 17:01:29 +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
|
// ITEM will be NULL after empty list
|
||||||
#define list_for(ITEM, LIST) \
|
#define list_for(ITEM, LIST) \
|
||||||
ITEM = LIST->length ? LIST->items[0] : NULL; \
|
ITEM = LIST->length ? LIST->items[0] : NULL; \
|
||||||
for(int list_it = 0, list_len = LIST->length; \
|
for (int list_it = 0, list_len = LIST->length; \
|
||||||
list_it < list_len; \
|
list_it < list_len; \
|
||||||
ITEM = LIST->items[++list_it])
|
ITEM = LIST->items[++list_it])
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue