Function handleVerbose [src]
Prototype
pub fn handleVerbose( b: *Build, opt_cwd: ?[]const u8, argv: []const []const u8, ) error{OutOfMemory}!void
Parameters
b: *Build
opt_cwd: ?[]const u8
argv: []const []const u8
Possible Errors
Source
pub fn handleVerbose(
b: *Build,
opt_cwd: ?[]const u8,
argv: []const []const u8,
) error{OutOfMemory}!void {
return handleVerbose2(b, opt_cwd, null, argv);
}