mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
list: fix indention
This commit is contained in:
parent
d34c7ac22a
commit
a02b3834b4
1 changed files with 4 additions and 4 deletions
|
@ -50,11 +50,11 @@ __attribute__((destructor(105))) static void UNIQUE(__dtor)() { \
|
|||
vlist_destroy(l, NULL, false); \
|
||||
}
|
||||
|
||||
#define vlist_length(list) ((list)->length)
|
||||
#define vlist_at_safe(list, index) ((list)->length > index ? (list)->array[index] : NULL)
|
||||
#define vlist_at(list, index) ((list)->array[index])
|
||||
#define vlist_length(list) ((list)->length)
|
||||
#define vlist_at_safe(list, index) ((list)->length > index ? (list)->array[index] : NULL)
|
||||
#define vlist_at(list, index) ((list)->array[index])
|
||||
|
||||
#define vlist_first(list) vlist_at(list, 0)
|
||||
#define vlist_first(list) vlist_at(list, 0)
|
||||
#define vlist_last(list) vlist_at(list, (list)->length-1)
|
||||
|
||||
/** Callback to search or sort a list. */
|
||||
|
|
Loading…
Add table
Reference in a new issue