py_newstrv method

void py_newstrv(
  1. py_OutRef arg0,
  2. c11_sv arg1
)

Create a str object from a c11_sv.

Implementation

void py_newstrv(
  py_OutRef arg0,
  c11_sv arg1,
) {
  return _py_newstrv(
    arg0,
    arg1,
  );
}