diff options
| author | Nakidai <plaza521@inbox.ru> | 2024-08-23 16:48:01 +0300 |
|---|---|---|
| committer | Nakidai <plaza521@inbox.ru> | 2024-08-23 16:48:01 +0300 |
| commit | 9e4058194742794f7742f19cb1a0bb3451ce22ea (patch) | |
| tree | 5f384d8624501c14db1040e19ca48d9542c92404 /include/operation.h | |
| parent | f4d71aa4a0f4d71104736e3d254d4b9a556e6170 (diff) | |
| download | 3cl-9e4058194742794f7742f19cb1a0bb3451ce22ea.tar.gz 3cl-9e4058194742794f7742f19cb1a0bb3451ce22ea.zip | |
add operation.h
Diffstat (limited to 'include/operation.h')
| -rw-r--r-- | include/operation.h | 12 |
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__ */ |