PyUnicode_DecodeFSDefault method

Pointer<PyObject> PyUnicode_DecodeFSDefault(
  1. Pointer<Char> s
)

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeFSDefault(
  ffi.Pointer<ffi.Char> s,
) {
  return _PyUnicode_DecodeFSDefault(
    s,
  );
}