style: Apply clang-format to C/C++ source files

Applied consistent code formatting using clang-format to all C/C++ source
and header files in the 'software/' directory.
This commit is contained in:
2025-07-10 23:33:50 +02:00
parent 8f89713866
commit bd8a7a766c
10 changed files with 580 additions and 428 deletions

View File

@@ -6,7 +6,8 @@
#include <zephyr/kernel.h>
int main(void) {
printk("Hello from Gateway!\n");
return 0;
int main(void)
{
printk("Hello from Gateway!\n");
return 0;
}