Home

Awesome

zinput

A Zig command-line input library!

Usage

const zinput = @import("zinput");

const my_string = try zinput.askString(allocator, "I need a string!", 128);
defer allocator.free(my_string);

Check out the test in main.zig for an example!