PyCodec_Lookup method Null safety

Pointer<PyObject> PyCodec_Lookup (
  1. Pointer<Int8> encoding
)

Implementation

ffi.Pointer<PyObject> PyCodec_Lookup(
  ffi.Pointer<ffi.Int8> encoding,
) {
  return _PyCodec_Lookup(
    encoding,
  );
}