rust/physfs-rs/src/lib.rs
author sheepluva
Sat, 26 Jun 2021 00:13:28 +0200
changeset 15831 c3971b38bbfa
parent 14456 a1613788130d
permissions -rw-r--r--
hedgewars-engine (rust)/preview: recognise feature_size cmd and do something with it

//! PhysFS bindings for Rust

#![deny(missing_docs)]

extern crate libc;

pub use physfs::*;
pub use physfs::file::*;

/// PhysFS bindings
mod physfs;
/// Definitions for the PhysFS primitives
mod primitives;