We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
62f6ba7
There was an error while loading. Please reload this page.
v0.1.5
8398cf2
Added Python ctypes-like syntax:
import { CDLL, c_int } from 'node-ctypes'; const libc = new CDLL("libc.so.6"); const abs_func = libc.abs; abs_func.argtypes = [c_int]; abs_func.restype = c_int; console.log(abs_func(-42)); // 42
0251c2f
v0.1.3