aboutsummaryrefslogtreecommitdiff
path: root/plugin/test/hello_plugin.c
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2024-09-30 18:37:16 -0700
committer3gg <3gg@shellblade.net>2024-09-30 18:37:16 -0700
commitd6113123b8666c32d4b718f089806a968aabe2d2 (patch)
tree52c8434e23d65207259a8fd28385c2beec1f9357 /plugin/test/hello_plugin.c
parentda9a6a75acac8c8597d807757bbd9e60f39c31de (diff)
Add plugin test.
Diffstat (limited to 'plugin/test/hello_plugin.c')
-rw-r--r--plugin/test/hello_plugin.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/test/hello_plugin.c b/plugin/test/hello_plugin.c
new file mode 100644
index 0000000..1ab290f
--- /dev/null
+++ b/plugin/test/hello_plugin.c
@@ -0,0 +1,3 @@
1#include <stdio.h>
2
3void SayHello() { printf("Hello!\n"); }