1 2 3 4 5 6 7 8 9 10 11 12
const std = @import("std"); const expect = std.testing.expect; const c = @cImport(@cInclude("foo.h")); test "C add" { const result = c.add(1, 2); expect(result == 3); } test "C extern variable" { expect(c.foo == 12345); }