py_bindfunc method
Bind a function to the object via "argc-based" style. @param obj the target object. @param name name of the function. @param f function to bind.
Implementation
void py_bindfunc(
py_Ref obj,
ffi.Pointer<ffi.Char> name,
py_CFunction f,
) {
return _py_bindfunc(
obj,
name,
f,
);
}