Documentation
1
2
3
4
5
6
7
8
9
10
use libc::c_int;
use std::ffi::{CStr};

use ffi::mdb_strerror;

pub fn error_msg(code: c_int) -> String {
    unsafe {
        String::from_utf8(CStr::from_ptr(mdb_strerror(code)).to_bytes().to_vec()).unwrap()
    }
}