9 lines
237 B
C
9 lines
237 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#pragma once
|
|
|
|
#define top( a, b ) ( a < b ? b : a )
|
|
#define bottom( a, b ) ( a < b ? a : b )
|
|
#define clipped_subtract( a, b ) ( a < b ? 0 : a - b )
|
|
|
|
#define XSTR(s) STR(s)
|
|
#define STR(s) #s
|