luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
use crate::records::lint_format_string::LintFormatString;
use core::ffi::c_char;

pub fn fuzz_format_string(data: *const c_char, size: usize) {
    let lfs = LintFormatString {
        context: core::ptr::null_mut(),
    };
    lfs.fuzz(data, size);
}