yaap/README.md

43 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2018-03-31 00:43:07 +02:00
# Yet Another Argument Parser (YAAP)
2018-03-30 23:29:17 +02:00
2018-03-31 00:43:07 +02:00
YAAP is a simple command line argument parser for C. It uses functions and structures to add arguments to the parsing context and parse the command line.
2018-03-30 23:29:17 +02:00
## Author
Dominik Meyer <dmeyer@federationhq.de>
## License
Copyright 2018 by Dominik Meyer Licensed under GPLv3
2018-03-31 00:43:07 +02:00
## Features
* git like command support (git commit)
* short and long flag support ( -t YAAP or title=YAAP)
* string argument support ( -t YAAP or title=YAAP)
2018-03-31 19:13:21 +02:00
* simple flags (-v, -V, -h, help)
2018-04-01 16:17:37 +02:00
* integer arguments (-c 10)
2018-03-31 00:43:07 +02:00
## Coming
2018-04-01 16:17:37 +02:00
2018-03-31 00:43:07 +02:00
* hex arguments ( -c 0x5A)
## Installation
YAAP is intented to be copied into your project directory. Different approaches are available:
* simpe copy argparse.h and argparse.c into your source directory
* add the github repository as a submodule
* add the github repository as a subtree
* add the github repository as a subrepo
In all cases you have to make sure that argparse.c is compiled into an object file and is appended to your link stage.
2018-03-31 00:57:17 +02:00
## Documentation
The Doxygen documentation can be found at https://byterazor.github.io/yaap/ .
2018-03-30 23:29:17 +02:00
## Signed Commits
All commits are signed with the GPG key for dmeyer@federationhq.de valid from 2017-07-30
Fingerprint: 8A96 F2F7 FC07 3485 C724 9879 B4C3 12B6 0060 6B64