rust/physfs-rs/src/lib.rs
author unc0rr
Mon, 06 May 2019 21:20:56 +0200
changeset 14894 9b292184d793
parent 14440 a1613788130d
permissions -rw-r--r--
Port code to pas2c dialect

//! 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;