null_fn

Crates.ionull_fn
lib.rsnull_fn
version0.1.1
sourcesrc
created_at2021-09-23 23:19:19.172542
updated_at2021-09-24 00:31:17.186485
descriptionA proc attribute macro that allows for creating null function pointers in statics
homepage
repositoryhttps://github.com/WilliamVenner/null_fn
max_upload_size
id455653
size5,587
William (WilliamVenner)

documentation

README

crates.io

null_fn

A proc attribute macro that allows for creating null function pointers in statics.

This crate is unsafe and easy to cause UB with, Option<fn()> is FFI safe and may be a more appropriate alternative if you value type safety.

Example

static mut UTIL_PlayerByUserId: unsafe extern "C" fn(userid: i32) -> *mut c_void = unsafe { std::mem::transmute::<*const (), _>(std::ptr::null()) }; // error[E0080]: it is undefined behavior to use this value

#[null_fn]
static mut UTIL_PlayerByUserId: unsafe extern "C" fn(userid: i32) -> *mut c_void = std::ptr::null(); // works!

fn main() {
    unsafe {
        UTIL_PlayerByUserId(20); // This would panic, as we have not initialized the function yet. By default the function is set to a small stub function that panics when called.

        UTIL_PlayerByUserId = /* magically find the pointer to the function; sigscan? */;
		// Setting the function's pointer to a null pointer is UB in Rust.
		// https://doc.rust-lang.org/nomicon/ffi.html#the-nullable-pointer-optimization

        let player = UTIL_PlayerByUserId(20); // Now that we set the function pointer, we can call the function without panicking, assuming we found the pointer correctly.

		/* do something with our player! */
    }
}
Commit count: 5

cargo fmt