pub unsafe extern "C" fn YASL_pushuserdata(
    S: *mut YASL_State,
    data: *mut c_void,
    tag: *const c_char,
    destructor: Option<unsafe extern "C" fn(arg1: *mut YASL_State, arg2: *mut c_void)>
)
Expand description

[-0, +1] Pushes a user-pointer onto the stack @param S the YASL_State onto which to push the user-pointer. @param userpointer the user-pointer to push onto the stack.