lo_truncate method

int lo_truncate(
  1. Pointer<PGconn> conn,
  2. int fd,
  3. int len
)

Implementation

int lo_truncate(
  ffi.Pointer<PGconn> conn,
  int fd,
  int len,
) {
  return _lo_truncate(
    conn,
    fd,
    len,
  );
}