aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/static_c_lib/foo.zig
blob: da0287540871349cd777df35293fb01755e50b92 (plain)
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);
    try expect(result == 3);
}

test "C extern variable" {
    try expect(c.foo == 12345);
}