You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
klish/examples/explugin/explugin.c

19 lines
237 B

#include <stdlib.h>
#include <stdio.h>
#include <clish/plugin.h>
CLISH_PLUGIN_SYM(explugin_fn)
{
printf("explugin: Hello world\n");
return 0;
}
CLISH_PLUGIN_INIT
{
clish_plugin_add_sym(plugin, explugin_fn, "hello");
return 0;
}