├── .gitignore ├── Makefile ├── README.md ├── UNLICENSE ├── examples ├── Makefile ├── long.c ├── short.c └── subcommands.c ├── optparse.h └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/UNLICENSE -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/examples/long.c -------------------------------------------------------------------------------- /examples/short.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/examples/short.c -------------------------------------------------------------------------------- /examples/subcommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/examples/subcommands.c -------------------------------------------------------------------------------- /optparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/optparse.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/optparse/HEAD/test.c --------------------------------------------------------------------------------