py_newfstr method

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

Create a formatted str object.

Implementation

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