commit 4ef75c1752b899d5354ef6a56ecab68fecdcd2ae parent 0c6647dda052dc7b653f5aee4107294adb8f2f76 Author: Francesco Saccone <francesco@francescosaccone.com> Date: Sun, 30 Mar 2025 20:13:41 +0200 chore: add file.c and file.h Signed-off-by: Francesco Saccone <francesco@francescosaccone.com> Diffstat:
A | file.c | | | 1 | + |
A | file.h | | | 4 | ++++ |
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/file.c b/file.c @@ -0,0 +1 @@ +#include "file.h" diff --git a/file.h b/file.h @@ -0,0 +1,4 @@ +#ifndef FILE_H +#define FILE_H + +#endif