Compare commits

..

No commits in common. "f049500fb4457d9ebdfcd530625401cbcf7f5b5b" and "010d27fba30fa6cb15aac40ba237aa73c00ae68e" have entirely different histories.

15 changed files with 4 additions and 17 deletions

View File

@ -1,7 +0,0 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2

0
.gitignore vendored
View File

View File

@ -1 +0,0 @@
# Changelog

View File

@ -1 +0,0 @@
## Contributing

View File

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

View File

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

View File

@ -1,4 +0,0 @@
## Documentation
Write here the documentation for your project!

View File

@ -2,4 +2,4 @@
#ifndef UTILS_H #ifndef UTILS_H
#define UTILS_H #define UTILS_H
#endif #endif

View File

View File

View File

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

View File