Compare commits

..

2 commits

Author SHA1 Message Date
9343842eae removed whitespace 2024-08-04 09:28:29 -07:00
b83b28af84 removed filecheck for formatting file. 2024-08-04 09:28:22 -07:00
2 changed files with 0 additions and 6 deletions

View file

@ -11,11 +11,6 @@ MODULE_DIR="${TEMPLATE_FILES}/modules"
format_source_code () { format_source_code () {
if [ ! -f .clang-format]; then
echo "Missing '.clang-format' file!"
return
fi
#Get a list of all C files #Get a list of all C files
source_c_files=$(find ./src -name '*.c') source_c_files=$(find ./src -name '*.c')
for f in $source_c_files; do for f in $source_c_files; do

View file

@ -5,4 +5,3 @@ int main(int argc, char **argv)
printf("Hello!\n"); printf("Hello!\n");
return 0; return 0;
} }