From 28160b3ff7c3a7ce4784ae0de09906b4cd7fe6e6 Mon Sep 17 00:00:00 2001 From: Mr SL1D3R <76396365+Mr-sl1d3r@users.noreply.github.com> Date: Sun, 13 Oct 2024 10:13:26 +0200 Subject: [PATCH] Core file --- .gitignore | 2 ++ funzioni.c | 5 +++++ funzioni.h | 8 ++++++++ main.c | 6 ++++++ 4 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 funzioni.c create mode 100644 funzioni.h create mode 100644 main.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea80e73 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/cmake-build-debug/ +/CMakeLists.txt diff --git a/funzioni.c b/funzioni.c new file mode 100644 index 0000000..3c71c2e --- /dev/null +++ b/funzioni.c @@ -0,0 +1,5 @@ +// +// Created by angel on 13/10/2024. +// + +#include "funzioni.h" diff --git a/funzioni.h b/funzioni.h new file mode 100644 index 0000000..3759bbc --- /dev/null +++ b/funzioni.h @@ -0,0 +1,8 @@ +// +// Created by angel on 13/10/2024. +// + +#ifndef AUTOVELOX_FUNZIONI_H +#define AUTOVELOX_FUNZIONI_H + +#endif //AUTOVELOX_FUNZIONI_H diff --git a/main.c b/main.c new file mode 100644 index 0000000..63f8805 --- /dev/null +++ b/main.c @@ -0,0 +1,6 @@ +#include + +int main(void) { + printf("Hello, World!\n"); + return 0; +}