From 2c5869143d5cc274c64581f18d67d8c2638be5fd Mon Sep 17 00:00:00 2001 From: bjt-user Date: Tue, 15 Aug 2023 16:50:00 +0200 Subject: [PATCH] added gitignore and moved .ics to tests dir --- .gitignore | 1 + src/main.c | 2 +- calendar.ics => tests/calendar.ics | 0 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore rename calendar.ics => tests/calendar.ics (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cba7efc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +a.out diff --git a/src/main.c b/src/main.c index fb008d3..697a125 100644 --- a/src/main.c +++ b/src/main.c @@ -12,7 +12,7 @@ #include int main() { - const char ICS_PATH[] = "calendar.ics"; + const char ICS_PATH[] = "tests/calendar.ics"; char my_line[4096] = ""; diff --git a/calendar.ics b/tests/calendar.ics similarity index 100% rename from calendar.ics rename to tests/calendar.ics