Core file

This commit is contained in:
Mr SL1D3R 2024-10-13 10:13:26 +02:00
parent 3ac48094a8
commit 28160b3ff7
4 changed files with 21 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/cmake-build-debug/
/CMakeLists.txt

5
funzioni.c Normal file
View File

@ -0,0 +1,5 @@
//
// Created by angel on 13/10/2024.
//
#include "funzioni.h"

8
funzioni.h Normal file
View File

@ -0,0 +1,8 @@
//
// Created by angel on 13/10/2024.
//
#ifndef AUTOVELOX_FUNZIONI_H
#define AUTOVELOX_FUNZIONI_H
#endif //AUTOVELOX_FUNZIONI_H

6
main.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Hello, World!\n");
return 0;
}