diff options
author | midipix <writeonce@midipix.org> | 2016-07-04 00:50:42 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-07-21 03:47:24 -0400 |
commit | 0efa8cf1d20712cbfaa549d31a8ebc11a23f78ec (patch) | |
tree | 784e6b7220f8f7b75fddf4e95776e3e9f9f1642a /src/skin | |
parent | 9afa0dab7afbc1f86c0c3ee656c6c92c872734b7 (diff) | |
download | ptycon-0efa8cf1d20712cbfaa549d31a8ebc11a23f78ec.tar.bz2 ptycon-0efa8cf1d20712cbfaa549d31a8ebc11a23f78ec.tar.xz |
created free-standing project skeleton.
Diffstat (limited to 'src/skin')
-rw-r--r-- | src/skin/ptyc_skin_default.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/skin/ptyc_skin_default.c b/src/skin/ptyc_skin_default.c new file mode 100644 index 0000000..85ce12e --- /dev/null +++ b/src/skin/ptyc_skin_default.c @@ -0,0 +1,12 @@ +#include "ptycon_driver_impl.h" +#include "argv/argv.h" + +const struct argv_option ptyc_default_options[] = { + {"version", 'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0,0, + "show version information"}, + + {"help", 'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,0,"short|long",0, + "show usage information [listing %s options only]"}, + + {0,0,0,0,0,0,0,0} +}; |