Py_EncodeLocale method

Pointer<Char> Py_EncodeLocale(
  1. Pointer<WChar> text,
  2. Pointer<Size> error_pos
)

Implementation

ffi.Pointer<ffi.Char> Py_EncodeLocale(
  ffi.Pointer<ffi.WChar> text,
  ffi.Pointer<ffi.Size> error_pos,
) {
  return _Py_EncodeLocale(
    text,
    error_pos,
  );
}