mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-22 19:56:08 +03:00
14 lines
417 B
Zig
14 lines
417 B
Zig
const std = @import("std");
|
|
|
|
const c = @import("c.zig").c;
|
|
|
|
pub const Error = std.mem.Allocator.Error || error{WuffsError};
|
|
|
|
pub fn check(log: anytype, status: *const c.struct_wuffs_base__status__struct) error{WuffsError}!void {
|
|
if (!c.wuffs_base__status__is_ok(status)) {
|
|
const e = c.wuffs_base__status__message(status);
|
|
log.warn("decode err={s}", .{e});
|
|
return error.WuffsError;
|
|
}
|
|
}
|