Setup ClangFormat.

This commit is contained in:
Joshua Vega 2026-01-14 17:40:04 -05:00
parent f1087a5c83
commit 396accb74c
Signed by: jsvcycling
GPG key ID: E3DD60C9AC7DEF79
2 changed files with 6 additions and 3 deletions

2
.clang-format Normal file
View file

@ -0,0 +1,2 @@
---
BasedOnStyle: WebKit

7
main.c
View file

@ -1,6 +1,7 @@
#include <stdio.h> #include <stdio.h>
int main(int argc, char **argv) { int main(int argc, char** argv)
printf("Hello world!\n"); {
return 0; printf("Hello world!\n");
return 0;
} }