rust/physfs-rs/src/lib.rs
author unc0rr
Wed, 19 Jun 2019 23:52:54 +0200
changeset 15187 decb2f1c682b
parent 14440 a1613788130d
permissions -rw-r--r--
Rework EquidistantPoints

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