mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 21:06:01 +01:00
20 lines
358 B
C
20 lines
358 B
C
/* SPDX-License-Identifier: Zlib */
|
|
|
|
#ifndef ZATHURA_MACROS_H
|
|
#define ZATHURA_MACROS_H
|
|
|
|
#include <girara/macros.h>
|
|
|
|
#define UNUSED(x) GIRARA_UNUSED(x)
|
|
#define DEPRECATED(x) GIRARA_DEPRECATED(x)
|
|
#define ZATHURA_PLUGIN_API GIRARA_VISIBLE
|
|
|
|
#ifndef MIN
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
#endif
|
|
|
|
#ifndef MAX
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
|
#endif
|
|
|
|
#endif
|