From: Dan Streetman Date: Thu, 2 Feb 2023 20:58:10 +0000 (-0500) Subject: basic/macro: add macro to iterate variadic args X-Git-Tag: v254-rc1~1070^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e179f2d89c9f0c951636d74de00136b4075cd1ac;p=thirdparty%2Fsystemd.git basic/macro: add macro to iterate variadic args --- diff --git a/src/basic/macro.h b/src/basic/macro.h index 63344f8d973..2770d01aa91 100644 --- a/src/basic/macro.h +++ b/src/basic/macro.h @@ -430,4 +430,13 @@ assert_cc(sizeof(dummy_t) == 0); _q && _q > (base) ? &_q[-1] : NULL; \ }) +/* Iterate through each variadic arg. All must be the same type as 'entry' or must be implicitly + * convertable. The iteration variable 'entry' must already be defined. */ +#define VA_ARGS_FOREACH(entry, ...) \ + _VA_ARGS_FOREACH(entry, UNIQ_T(_entries_, UNIQ), UNIQ_T(_current_, UNIQ), ##__VA_ARGS__) +#define _VA_ARGS_FOREACH(entry, _entries_, _current_, ...) \ + for (typeof(entry) _entries_[] = { __VA_ARGS__ }, *_current_ = _entries_; \ + ((long)(_current_ - _entries_) < (long)ELEMENTSOF(_entries_)) && ({ entry = *_current_; true; }); \ + _current_++) + #include "log.h"