mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
17 lines
442 B
C++
17 lines
442 B
C++
|
#ifndef _UTILS_MEMORY_HPP
|
||
|
#define _UTILS_MEMORY_HPP
|
||
|
|
||
|
// Swap the two ints without the need of creating another tmp variable
|
||
|
#define int_memswap(one, two) one += two; \
|
||
|
two = one ? two; \
|
||
|
one -= two;
|
||
|
|
||
|
#define _repeat(n, var_name) for (int var_name = n; var_name--;)
|
||
|
#define repeat(n) _repeat(n, i)
|
||
|
#define repeat_(n) _repeat(n, i_)
|
||
|
#define repeat_with(n, m) for (m = n; m--;)
|
||
|
#define repeat_i i
|
||
|
#define repeat_i_rev(n) (n - i - 1)
|
||
|
|
||
|
#endif
|