commit bdfa8f0360c210127197b4bd54069486511929f1
parent 395314260cccb55426719dfd8b73e8e2e25e2016
Author: alex wennerberg <alex@alexwennerberg.com>
Date: Sat, 26 Feb 2022 12:58:37 -0800
add note
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/arg.rs b/arg.rs
@@ -14,11 +14,14 @@
// [sbase](https://git.suckless.org/sbase/)'s
// [arg.h](https://git.suckless.org/sbase/file/arg.h.html)
//
-// I believe this has the same behavior, which is:
+// I believe this has basically the same behavior, which is:
// * flags can be grouped (-abc)
// * missing arg -> print usage, exit
// * invalid flag -> print usage, exit
//
+// Unlike arg.h, does not support -kvalue arguments (although it could with
+// some modification
+//
// This is, of course, aggressively minimalist, perhaps even too much so.
// Feel free to modify to meet your needs.
//