mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
6 lines
143 B
C
6 lines
143 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#define ALEN(v) (sizeof(v) / sizeof((v)[0]))
|
||
|
|
#define min(x, y) ((x) < (y) ? (x) : (y))
|
||
|
|
#define max(x, y) ((x) > (y) ? (x) : (y))
|