py_newstrn method

Pointer<Char> py_newstrn(
  1. py_OutRef arg0,
  2. int arg1
)

Create a str object with n UNINITIALIZED bytes plus '\0'.

Implementation

ffi.Pointer<ffi.Char> py_newstrn(
  py_OutRef arg0,
  int arg1,
) {
  return _py_newstrn(
    arg0,
    arg1,
  );
}