summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2026-08-16 09:01:09 +0800
committerruki <[email protected]>2026-08-16 09:01:09 +0800
commit58f6d2dd060b78afb0f1002c5586fc85dfca0629 (patch)
tree5e5de9a90decf8a22b1565157e739b00fb1aa004
parentda447ac2ab5de57880d1179f5d3df7638ab5af23 (diff)
format coderepo
-rw-r--r--tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h3
-rw-r--r--tests/actions/addon/projects/custom-package/src/main.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h b/tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h
index c7b9e86b1..ca969acd2 100644
--- a/tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h
+++ b/tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h
@@ -1,7 +1,6 @@
#pragma once
#include <stdio.h>
-static inline void hello_utils_greeting(void)
-{
+static inline void hello_utils_greeting(void) {
printf("hello from the custom package!\n");
}
diff --git a/tests/actions/addon/projects/custom-package/src/main.c b/tests/actions/addon/projects/custom-package/src/main.c
index 3edd2a8cb..12208c880 100644
--- a/tests/actions/addon/projects/custom-package/src/main.c
+++ b/tests/actions/addon/projects/custom-package/src/main.c
@@ -1,7 +1,6 @@
#include <hello_utils.h>
-int main(int argc, char** argv)
-{
+int main(int argc, char** argv) {
hello_utils_greeting();
return 0;
}