aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.h
blob: 42b5df5aa7e80d8299c66a9151fd974be0ec79d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* See LICENSE file for copyright and license details. */
#include "arg.h"

#define ELEMENTSOF(ARRAY) (sizeof(ARRAY) / sizeof(*(ARRAY)))
#define MIN(A, B)         ((A) < (B) ? (A) : (B))
#define MAX(A, B)         ((A) > (B) ? (A) : (B))
#define CLIP(A, B, C)     ((B) < (A) ? (A) : (B) > (C) ? (C) : (B))

#define USAGE(SYNOPSIS)\
	static void usage(void)\
	{ eprintf("usage: %s%s%s\n", argv0, SYNOPSIS ? " " : "", SYNOPSIS); }

#include "util/eprintf.h"
#include "util/efflush.h"
#include "util/fshut.h"
#include "util/eopen.h"
#include "util/emalloc.h"
#include "util/to.h"
#include "util/colour.h"
#include "util/io.h"
#include "util/jobs.h"
#include "util/endian.h"
#include "util/efunc.h"