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; +}