C.longlong(value)
Creates a new C Value of type long long
. This function is a simplified wrapper around the Value constructor.
Return value
This function returns a ValueExample
local c = require 'c'
-- Defines a C Value of type "long long", initialized with the value 9876543210987654321
local val = c.longlong(9876543210987654321)
-- Prints the C Value
print(val)