commit 010d27fba30fa6cb15aac40ba237aa73c00ae68e Author: Andrea Date: Fri Sep 13 10:57:41 2024 +0200 init diff --git a/README.md b/README.md new file mode 100644 index 0000000..84af304 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# C Project + +A little template for C projects. \ No newline at end of file diff --git a/common/utils.c b/common/utils.c new file mode 100644 index 0000000..56d9c64 --- /dev/null +++ b/common/utils.c @@ -0,0 +1,2 @@ + +#include "utils.h" \ No newline at end of file diff --git a/completions/.gitkeep b/completions/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/include/utils.h b/include/utils.h new file mode 100644 index 0000000..ff4fda2 --- /dev/null +++ b/include/utils.h @@ -0,0 +1,5 @@ + +#ifndef UTILS_H +#define UTILS_H + +#endif \ No newline at end of file diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..b7735ac --- /dev/null +++ b/src/main.c @@ -0,0 +1,2 @@ + +int main(int argc, char *argv) { return 0; } \ No newline at end of file