py_setreg method

void py_setreg(
  1. int i,
  2. py_Ref val
)

Set the i-th register.

Implementation

void py_setreg(
  int i,
  py_Ref val,
) {
  return _py_setreg(
    i,
    val,
  );
}