diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-09-26 19:36:42 +0300 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-09-26 19:36:42 +0300 |
commit | 8a981e9aa73c06132cfff1b2a67b8e5e39e98856 (patch) | |
tree | 32d948d17851f0b4f4a3cd81e49a19d5409d5e2a /src/bin | |
parent | 96e460d047cc199b27e2e35042a5789cce9d1e91 (diff) |
New makefile
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); +} |