PyUnicode_FindChar method

int PyUnicode_FindChar(
  1. Pointer<PyObject> str,
  2. int ch,
  3. int start,
  4. int end,
  5. int direction,
)

Implementation

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