#[unsafe(no_mangle)]pub unsafe extern "C" fn fs_write_file(
handle: *mut FsHandle,
name: *const c_char,
offset: u64,
data: *const u8,
data_len: usize,
) -> i32Expand description
Write data to a file at the given path.
ยงSafety
namemust be a valid null-terminated C string (may contain/separators).datamust point todata_lenvalid bytes.