diff options
Diffstat (limited to 'wrapper/test.c')
-rw-r--r-- | wrapper/test.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/wrapper/test.c b/wrapper/test.c new file mode 100644 index 0000000..3a9abc9 --- /dev/null +++ b/wrapper/test.c @@ -0,0 +1,9 @@ +#include "plugin.c" +#include "plugin-debug.c" + +int main() { + struct plugin_tree *plugins=load_plugins("plugins","plugin.conf"); + _plugin_print(plugins); + return 0; +} + |