Notes
Example
--! luart-extensions
import c
-- Much simpler alternative is to use _ARCH global variable
local function get_arch()
-- check the C Value pointer size to guess arch
return c.NULL.size == 8 and "x64" or "x86"
end
print("C module is built for "..get_arch())