clibs
Tiny but handy utility libraries for C
Loading...
Searching...
No Matches
clibs_control_structure.h
Go to the documentation of this file.
1
22
23#ifndef CLIBS_CONTROL_STRUCTURE_H
24#define CLIBS_CONTROL_STRUCTURE_H
25
26#include <stddef.h>
27
33#define TIMES(count, block) \
34 do { \
35 for (size_t _clibs_times_i = 0; \
36 _clibs_times_i < (count); \
37 ++_clibs_times_i) \
38 { \
39 block; \
40 } \
41 } while (0)
42
43#endif /* CLIBS_CONTROL_STRUCTURE_H */