Hejsil / zig-clap

Command line argument parsing library
MIT License
939 stars 67 forks source link

Use std.os.ArgIterator #7

Closed Hejsil closed 6 years ago

Hejsil commented 6 years ago

If we want to be truly none allocating (at least of POSIX), then we should probably use the std.os.ArgIterator. Sadly, on Windows, this iterator allocates, and we can't really get around that (I think).

Questions: