#[no_mangle]
pub extern "C" fn decode(raw: *const libc::c_char) -> *mut u32 {
let str_raw = unsafe { CStr::from_ptr(raw) }.to_str().unwrap().to_string();
let bytes_raw = hex::decode(str_raw).unwrap();
let mut u8_fixed: [u32; 6] = Decode::decode(&mut &bytes_raw[..]).unwrap();
let ptr = u8_fixed.as_mut_ptr();
std::mem::forget(u8_fixed);
ptr
}
nodejs code
let libm = ffi.Library(rootPath, {
'decode': [ref.refType("uint"), ['string']],
}
let value = libm.decode("010000000200000003000000040000000500000006000000")
decode 的 value 返回值应该是 []uint{1,2,3,4,5,6}
,现在打印出 value 看起来像是个 buffer, 不知道怎么解析这个 buffer
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.