This commit is contained in:
Andrea 2024-09-13 10:57:41 +02:00
commit 010d27fba3
No known key found for this signature in database
GPG Key ID: 4594610B9C8F91C5
5 changed files with 12 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# C Project
A little template for C projects.

2
common/utils.c Normal file
View File

@ -0,0 +1,2 @@
#include "utils.h"

0
completions/.gitkeep Normal file
View File

5
include/utils.h Normal file
View File

@ -0,0 +1,5 @@
#ifndef UTILS_H
#define UTILS_H
#endif

2
src/main.c Normal file
View File

@ -0,0 +1,2 @@
int main(int argc, char *argv) { return 0; }