c.char(value)function

Creates a new C Value of type char. This function is a simplified wrapper around the Value constructor.

Parameters

value

A Lua value used to initialize the C Value (see Lua to C conversion rules)

Return value

This function returns a Value

Example

local c = require 'c' -- Defines a C Value of type "char", initialized with the value 'A' local val = c.char('A') -- Prints the C Value print(val)