lo_lseek method

int lo_lseek(
  1. Pointer<PGconn> conn,
  2. int fd,
  3. int offset,
  4. int whence,
)

Implementation

int lo_lseek(
  ffi.Pointer<PGconn> conn,
  int fd,
  int offset,
  int whence,
) {
  return _lo_lseek(
    conn,
    fd,
    offset,
    whence,
  );
}