mdb_env_info function
@brief Return information about the LMDB environment.
@paramin
env An environment handle returned by #mdb_env_create()
@paramout
stat The address of an #MDB_envinfo structure
where the information will be copied
Implementation
@ffi.FfiNative<
ffi.Int Function(
ffi.Pointer<MDB_env>, ffi.Pointer<MDB_envinfo>)>('mdb_env_info')
external int mdb_env_info(
ffi.Pointer<MDB_env> env,
ffi.Pointer<MDB_envinfo> stat,
);