py_newstr method

void py_newstr(
  1. py_OutRef arg0,
  2. Pointer<Char> arg1
)

Create a str object from a null-terminated string (utf-8).

Implementation

void py_newstr(
  py_OutRef arg0,
  ffi.Pointer<ffi.Char> arg1,
) {
  return _py_newstr(
    arg0,
    arg1,
  );
}