diff options
author | makefunstuff <[email protected]> | 2024-07-03 02:02:26 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-07-03 02:02:26 +0200 |
commit | f4a8896608d61f23175dca7d96cea77b43a95c3c (patch) | |
tree | 2f7a901e374f384b0bb7f089bcbc9b082548be65 /src | |
parent | 0ead1a692716d6b7f610d752ccbfaf808bb95e6c (diff) | |
download | tinkerbunk-f4a8896608d61f23175dca7d96cea77b43a95c3c.tar.gz |
remove dead method
Diffstat (limited to '')
-rw-r--r-- | src/main.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.zig b/src/main.zig index 750dce0..5d5f734 100644 --- a/src/main.zig +++ b/src/main.zig @@ -67,10 +67,6 @@ pub fn main() !void { print_help(); } -fn arg_is(arg: []const u8, target: []const u8) bool { - return std.mem.eql(u8, arg, target); -} - fn print_help() void { std.debug.print("[usage] tinkerbunk ls\n", .{}); } |