summaryrefslogtreecommitdiff
path: root/tests/actions/addon/custom-package/includes/packages/src/include
diff options
context:
space:
mode:
authorruki <[email protected]>2026-08-16 08:56:36 +0800
committerruki <[email protected]>2026-08-16 08:56:36 +0800
commitda447ac2ab5de57880d1179f5d3df7638ab5af23 (patch)
tree1059b8cfc78db7c61e1fd7929bda00041c7e5ad4 /tests/actions/addon/custom-package/includes/packages/src/include
parent65854acd5e7080dae4cac3e3b3ec1ce01e902ae7 (diff)
add packages test for addon
Diffstat (limited to 'tests/actions/addon/custom-package/includes/packages/src/include')
-rw-r--r--tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h7
1 files changed, 7 insertions, 0 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
new file mode 100644
index 000000000..c7b9e86b1
--- /dev/null
+++ b/tests/actions/addon/custom-package/includes/packages/src/include/hello_utils.h
@@ -0,0 +1,7 @@
+#pragma once
+#include <stdio.h>
+
+static inline void hello_utils_greeting(void)
+{
+ printf("hello from the custom package!\n");
+}