You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ndg/src/test.zig

22 lines
370 B
Zig

const std = @import("std");
export fn wifi_ssid_add_network(name: [*:0]const u8) void {
_ = name;
}
export fn lv_timer_del(timer: *opaque {}) void {
_ = timer;
}
export fn lv_disp_get_inactive_time(disp: *opaque {}) u32 {
_ = disp;
return 0;
}
test {
_ = @import("comm.zig");
_ = @import("ngui.zig");
std.testing.refAllDecls(@This());
}