1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! # FFI bindings to **libpmemlog**
//!
//! The **pmem-log** library provides a pmem-resident log file.
//! This is useful for programs like databases that append frequently to a log file.
//!
//! > This is **not** an official port of the NVM Library.
//! >
//! > The official **libpmemlog** documentation can be found at: [http://pmem.io/nvml/libpmemlog/](http://pmem.io/nvml/libpmemlog/)

extern crate pmemlog_sys;
extern crate libc;

pub mod log;

pub use log::Log;