diff options
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/fspec-info.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/bin/fspec-info.c b/src/bin/fspec-info.c new file mode 100644 index 0000000..c65fb6a --- /dev/null +++ b/src/bin/fspec-info.c @@ -0,0 +1,10 @@ +#include <colm/colm.h> + +int +main(int argc, const char **argv) +{ + struct colm_program *prg = colm_new_program(&colm_object); + colm_set_debug(prg, 0); + colm_run_program(prg, argc, argv); + return colm_delete_program(prg); +} |