rust/physfs-rs/src/lib.rs
author alfadur
Thu, 29 Aug 2019 21:25:23 +0300
changeset 15405 1c6d5656157c
parent 14456 a1613788130d
permissions -rw-r--r--
ignore overflow in point norm computation

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