anplug.c 222 B

12345678910111213141516
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <clish/plugin.h>
  4. CLISH_PLUGIN_SYM(anplug_fn)
  5. {
  6. printf("anplug: Another plugin\n");
  7. return 0;
  8. }
  9. CLISH_PLUGIN_INIT
  10. {
  11. clish_plugin_add_sym(plugin, anplug_fn, "an_fn");
  12. }