aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-01-07 11:42:40 +0100
committerMattias Andrée <maandree@kth.se>2022-01-07 11:42:40 +0100
commit222f009731176e3d54d2e45e1c7fd9ccf0f97dd2 (patch)
tree14145dfbd589c05c46a7c6a0902339960ddb6d04 /common.h
downloadblakesum-222f009731176e3d54d2e45e1c7fd9ccf0f97dd2.tar.gz
blakesum-222f009731176e3d54d2e45e1c7fd9ccf0f97dd2.tar.bz2
blakesum-222f009731176e3d54d2e45e1c7fd9ccf0f97dd2.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'common.h')
-rw-r--r--common.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/common.h b/common.h
new file mode 100644
index 0000000..b0cbd63
--- /dev/null
+++ b/common.h
@@ -0,0 +1,14 @@
+/* See LICENSE file for copyright and license details. */
+#include <ctype.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <strings.h>
+#include <unistd.h>
+
+#include <libblake.h>
+
+#include "arg.h"