clibs
Tiny but handy utility libraries for C
clibs_control_structure.h
Go to the documentation of this file.
1 
6 #ifndef CLIBS_CONTROL_STRUCTURE_H
7 #define CLIBS_CONTROL_STRUCTURE_H
8 
14 #define TIMES(count, block) { \
15  size_t i; \
16  for (i = 0; i < (count); ++i) { \
17  (block); \
18  } \
19 }
20 
21 #endif /* CLIBS_CONTROL_STRUCTURE_H */