PHYSFS_writeULE32

Function PHYSFS_writeULE32 

Source
pub unsafe extern "C" fn PHYSFS_writeULE32(
    file: *mut PHYSFS_File,
    val: PHYSFS_uint32,
) -> c_int
Expand description

\fn int PHYSFS_writeULE32(PHYSFS_File *file, PHYSFS_uint32 val) \brief Convert and write an unsigned 32-bit littleendian value.

Convenience function. Convert an unsigned 32-bit value from the platform’s native byte order to littleendian and write it to a file.

\param file PhysicsFS file handle to which to write. \param val Value to convert and write. \return zero on failure, non-zero on success. On failure, you can find out what went wrong from PHYSFS_getLastErrorCode().