aboutsummaryrefslogtreecommitdiff
path: root/src/defaultIO.zig
blob: b87c2d65bc32547df63a135e5772dc0d4aa7d906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const std = @import("std");

pub const IOErrors = error{
    IOError,
    NotImplemented,
};

pub fn characterInput() IOErrors!i64 {
    // TODO
    return error.NotImplemented;
}

pub fn decimalInput() IOErrors!i64 {
    // TODO
    return error.NotImplemented;
}

pub fn characterOutput(v: i64) IOErrors!void {
    // TODO
    _ = v;
    return error.NotImplemented;
}

pub fn decimalOutput(v: i64) IOErrors!void {
    // TODO
    _ = v;
    return error.NotImplemented;
}

test "all" {
    std.testing.refAllDecls(@This());
}