about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/operation.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/operation.h b/include/operation.h
new file mode 100644
index 0000000..ce487da
--- /dev/null
+++ b/include/operation.h
@@ -0,0 +1,12 @@
+#ifndef __OPERATION_H__
+#define __OPERATION_H__
+
+#include "cccl.h"
+
+
+typedef void (*cccl_operation)(void);
+
+void cccl_operation_init(cccl *pc);
+cccl_operation cccl_select_operation(void);
+
+#endif /* __OPERATION_H__ */