summaryrefslogtreecommitdiff
path: root/src/terminal/c/result.zig
blob: a2ebc9b69eec361b76dfd93bacf343bf0055e00f (plain)
1
2
3
4
5
/// C: GhosttyResult
pub const Result = enum(c_int) {
    success = 0,
    out_of_memory = -1,
};