PHYSFS_writeUBE16

Function PHYSFS_writeUBE16 

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

\fn int PHYSFS_writeUBE16(PHYSFS_File *file, PHYSFS_uint16 val) \brief Convert and write an unsigned 16-bit bigendian value.

Convenience function. Convert an unsigned 16-bit value from the platform’s native byte order to bigendian 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().