mirror of
https://github.com/lune-org/lune.git
synced 2025-04-06 03:20:55 +01:00
9 lines
374 B
Text
9 lines
374 B
Text
local callableWrapper = require("../utils/callableWrapper")
|
|
local ffi = require("@lune/ffi")
|
|
local lib = require("../utils/compile")("./tests/ffi/external_math/lib.c")
|
|
local c = ffi.c
|
|
|
|
local addInt = callableWrapper(lib:find("add_int"), { c.int, c.int }, c.int)
|
|
local result = addInt(100, 200)
|
|
|
|
assert(result == 300, `test_addInt failed. result expected 300, got {result}`)
|