mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 03:14:36 +00:00
13 lines
235 B
C
13 lines
235 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_UTIL_H
|
|
#define MUON_UTIL_H
|
|
|
|
#define MIN(a, b) ((a) < (b)?(a):(b))
|
|
#define MAX(a, b) ((a) > (b)?(a):(b))
|
|
|
|
#endif
|