From 9e4058194742794f7742f19cb1a0bb3451ce22ea Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 23 Aug 2024 16:48:01 +0300 Subject: add operation.h --- include/operation.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/operation.h (limited to 'include') 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__ */ -- cgit 1.4.1