luaur-compiler 0.1.3

Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
use crate::functions::set_compile_constant_string::set_compile_constant_string;
use crate::type_aliases::lua_compile_constant::lua_CompileConstant;
use core::ffi::c_char;

pub fn luau_set_compile_constant_string(constant: lua_CompileConstant, s: *const c_char, l: usize) {
    set_compile_constant_string(constant, s, l);
}