mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
5 lines
143 B
C
5 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))
|