diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2009-09-01 16:46:19 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:14 -0600 |
commit | 0c68c097a9d7fcc6fb90a0cf3ff54afe9b1fdabf (patch) | |
tree | 4b07ef7c15614805a19e42d552286e2cf17a787a /c/test.c | |
parent | 57ac88ce32736ae933c33b742392b4b4c2fba0cd (diff) |
continue working
Diffstat (limited to 'c/test.c')
-rw-r--r-- | c/test.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/c/test.c b/c/test.c new file mode 100644 index 0000000..3a10711 --- /dev/null +++ b/c/test.c @@ -0,0 +1,10 @@ +#include "plugin.c" +#include "plugin-debug.c" + +int main() +{ + struct plugin_tree *plugins=load_plugins("plugins","plugin.conf"); + print_plugins(plugins->plugins); + return 0; +} + |