summaryrefslogtreecommitdiff
path: root/src/bin/fspec-info.c
blob: c65fb6a153f8e42b0cfd0fa4ca744318dbd74577 (plain)
1
2
3
4
5
6
7
8
9
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);
}