py_tostr method

Pointer<Char> py_tostr(
  1. py_Ref arg0
)

Convert a str object in python to null-terminated string.

Implementation

ffi.Pointer<ffi.Char> py_tostr(
  py_Ref arg0,
) {
  return _py_tostr(
    arg0,
  );
}