aboutsummaryrefslogtreecommitdiffstats
path: root/src/bench.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bench.h')
-rw-r--r--src/bench.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/bench.h b/src/bench.h
new file mode 100644
index 0000000..d62d7f9
--- /dev/null
+++ b/src/bench.h
@@ -0,0 +1,14 @@
+/* ==========================================================================
+ Licensed under BSD 2clause license. See LICENSE file for more information
+ Author: Michał Łyszczek <michal.lyszczek@bofc.pl>
+ ========================================================================== */
+
+
+#ifndef BENCH_H
+#define BENCH_H 1
+
+#include <stddef.h>
+
+int bench(void* dst, void* src, void *f1, void *f2);
+
+#endif