diff options
author | 3gg <3gg@shellblade.net> | 2024-09-30 18:37:16 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2024-09-30 18:37:16 -0700 |
commit | d6113123b8666c32d4b718f089806a968aabe2d2 (patch) | |
tree | 52c8434e23d65207259a8fd28385c2beec1f9357 /plugin/test/hello_plugin.c | |
parent | da9a6a75acac8c8597d807757bbd9e60f39c31de (diff) |
Add plugin test.
Diffstat (limited to 'plugin/test/hello_plugin.c')
-rw-r--r-- | plugin/test/hello_plugin.c | 3 |
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 | |||
3 | void SayHello() { printf("Hello!\n"); } | ||