From e6562db0423e6019154baf05beb02ff3da02f3bb Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Fri, 24 Mar 2023 16:08:46 +0100 Subject: Re-arrange repository structure --- seitan-cooker/util.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 seitan-cooker/util.h (limited to 'seitan-cooker/util.h') diff --git a/seitan-cooker/util.h b/seitan-cooker/util.h new file mode 100644 index 0000000..84dc3db --- /dev/null +++ b/seitan-cooker/util.h @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later + * Copyright 2023 Red Hat GmbH + * Author: Stefano Brivio + */ + +#ifndef UTIL_H +#define UTIL_H + +#define BIT(n) (1UL << (n)) + +void err(const char *format, ...); +void info(const char *format, ...); +void debug(const char *format, ...); + +#define die(...) \ + do { \ + fprintf(stderr, "%s:%i: ", __FILE__, __LINE__); \ + err(__VA_ARGS__); \ + exit(EXIT_FAILURE); \ + } while (0) + +#endif /* UTIL_H */ -- cgit v1.2.3