summaryrefslogtreecommitdiff
path: root/include/byte.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/byte.h')
-rw-r--r--include/byte.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/byte.h b/include/byte.h
new file mode 100644
index 0000000..f437341
--- /dev/null
+++ b/include/byte.h
@@ -0,0 +1,21 @@
+#ifndef BYTE_H
+#define BYTE_H
+
+/**
+ @file byte.h
+ @author djb, feh
+ @source s/qmail
+ @comment no declaration of argument types; too many compiler errors
+*/
+
+extern unsigned int byte_chr();
+extern unsigned int byte_rchr();
+extern void byte_copy();
+extern void byte_copyr();
+extern int byte_diff();
+extern void byte_zero();
+extern void byte_fill();
+
+#define byte_equal(s,n,t) (!byte_diff((s),(n),(t)))
+
+#endif