20 lines
456 B
C
20 lines
456 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
|
|
|
|
#define VERSION 0.3.1
|
|
|
|
#ifndef GITHASH
|
|
#define FULLVERSION VERSION
|
|
#else
|
|
#define FULLVERSION VERSION~git.GITHASH
|
|
#endif
|
|
|
|
#define VERSIONSTRING \
|
|
"AnnaConnect version "XSTR(FULLVERSION)", Copyright (C) Anna Snoeijs\n"
|