rust/physfs-rs/src/lib.rs
author unc0rr
Tue, 15 Jun 2021 20:45:46 +0200
changeset 15792 191e51179d1b
parent 14435 a1613788130d
permissions -rw-r--r--
Fix detection of message author in ubot core

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