1
 2
 3
 4
 5
 6
 7
 8
 9
10
#![allow(dead_code)]
use libc::c_void;

pub type Account = *mut c_void;

extern "C" {
	fn create_account() -> Account;
	fn print(account: Account);
	fn destroy_account(account: Account);
}