diff options
author | katherine <shmibs@shmibbles.me> | 2018-03-18 11:50:51 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2018-03-18 11:50:51 -0700 |
commit | 9b5638459d14a7375471ae98d8bd67b89e00444c (patch) | |
tree | 666ebf9c4aa229da3ae3c9098202d2081d5f92ff | |
parent | 424baa89f475b6f80f762be504154b48e3ab4443 (diff) | |
download | simple-opt-9b5638459d14a7375471ae98d8bd67b89e00444c.tar.gz |
add link to simple-opt.h
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,11 +1,11 @@ simple-opt ========== -simple-opt.h is a single header file which implements a simple, flexible and -portable version of command line option parsing for programs written in C. it -is designed to be (hopefully) intuitive while also being (hopefully) more -powerful than traditional getopt or similar. it has no dependencies outside the -standard library and is C99 compatible. +[simple-opt.h](src/simple-opt.h) is a single header file which implements a +simple, flexible and portable version of command line option parsing for +programs written in C. it is designed to be (hopefully) intuitive while also +being (hopefully) more powerful than traditional getopt or similar. it has no +dependencies outside the standard library and is C99 compatible. what follows is a simple example usage. refer to [interface.md](doc/interface.md) for more detail. |