diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-26 13:21:26 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-26 13:21:26 +0530 |
commit | 2618424ffd6aeff9a9c859fb2cf48c8e9b379c98 (patch) | |
tree | c9a3903e9d0bd1e11c7498e667afd0a37697f315 | |
parent | f72ed582f71b2f95506e2edf426f87d3ba89a8c5 (diff) |
build: update CMakeLists & delete unused filehandler_t
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | include/filehandler.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a16dfb..e2ed34e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.21) project(msg C) set(SRC + src/config.c src/copy.c src/engine.c src/filehandler.c @@ -9,6 +10,7 @@ set(SRC src/list.c src/main.c src/template.c + src/util.c ) add_executable(msg ${SRC}) diff --git a/include/filehandler.h b/include/filehandler.h index f1f3342..8868af7 100644 --- a/include/filehandler.h +++ b/include/filehandler.h @@ -3,10 +3,6 @@ #include <stdio.h> -typedef struct { - -} filehandler_t; - char *fcontent(FILE *f, unsigned int size); unsigned int fsize(FILE *f); |