PyUnicode_FindChar method Null safety
Implementation
int PyUnicode_FindChar(
ffi.Pointer<PyObject> str,
int ch,
int start,
int end,
int direction,
) {
return _PyUnicode_FindChar(
str,
ch,
start,
end,
direction,
);
}