mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
8 lines
377 B
Text
8 lines
377 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 mulInt = callableWrapper(lib:find("mul_int"), { c.int, c.int }, c.int)
|
|
local result = mulInt(100, 200)
|
|
assert(result == 20000, `test_mulInt failed. result expected 20000, got {result}`)
|