Go to file
Marcel M. Otte 6995967283 wrote header file 2013-12-24 18:05:27 +01:00
c wrote header file 2013-12-24 18:05:27 +01:00
java moved java source to java subdirectory 2013-12-24 15:47:33 +01:00
.gitignore proper project foldering. yeah, I shouldn't copy around bare java 2013-12-12 20:03:05 +00:00
LICENSE corrected license 2013-12-12 20:31:32 +01:00
README.md Updated Readme 2013-12-24 16:14:17 +01:00

README.md

cmdlineoptions

A library for some languages handling commandline options in the dashed fashion.

Currently available as:

  • java
    • Currently available just as a Java class, within an eclipse project. :)
  • C
    • ... not ... quite ... ready ...
  • (C++ maybe coming soon...)
  • maybe other languages in the future?

It supports single dashed options like "-h", double dashed options "--help" and additional option alternatives. It has got automatic help handling of all configured options with "-h", "--help" and "-?".

The library - or better, the libraries - are planned to be consistent over all languages, so you are able to define and check and retrieve options with similar function calls.

Current work and future plans

Working on:

  • JUnit tests
  • Java: refactoring
  • Java: better errorhandling
  • Java: Examples
  • C version
  • Getting started

Future plans:

  • C++ version
  • ...