rust/physfs-rs/src/lib.rs
author unC0Rr
Tue, 15 Nov 2022 15:25:37 +0100
changeset 15922 ebc50f21e849
parent 14456 a1613788130d
permissions -rw-r--r--
Code formatting, enable c++17 for qmlfrontend

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