diff options
author | Juan Manuel Tomas <jtomas1815@gmail.com> | 2021-08-05 01:18:19 -0300 |
---|---|---|
committer | Juan Manuel Tomas <jtomas1815@gmail.com> | 2021-08-05 01:18:19 -0300 |
commit | 98ab1d968030494fbfbe3688929b761382b28b09 (patch) | |
tree | c76b7f02b4484d6dce108e003e1be8e1c76c0ef7 /README.md | |
download | flag-master.tar.gz flag-master.zip |
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..13f442a --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +* Shady Flag Library + +This is a library for parsing command line flags. +Just include the .h file and you're good to go. +Example: +```int hello = flag_int("--testing", 420, "<something> Hello World");``` +This will put on the variable hello the value following the --testing command +line flag, or the default value 420 if the flag is not present. |