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 /src/cccl.c | |
| parent | f4d71aa4a0f4d71104736e3d254d4b9a556e6170 (diff) | |
| download | 3cl-9e4058194742794f7742f19cb1a0bb3451ce22ea.tar.gz 3cl-9e4058194742794f7742f19cb1a0bb3451ce22ea.zip | |
add operation.h
Diffstat (limited to 'src/cccl.c')
| -rw-r--r-- | src/cccl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cccl.c b/src/cccl.c index 680ead4..e2bb788 100644 --- a/src/cccl.c +++ b/src/cccl.c @@ -8,6 +8,7 @@ #include <stdlib.h> #include <string.h> +#include "operation.h" #include "platform/getch.h" #include "utils.h" @@ -37,6 +38,7 @@ void cccl_init(s8 *filename) if (errno) die(1, strerror(errno)); pc.filename = filename; + cccl_operation_init(&pc); } void cccl_free() |