flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/* automatically generated by rust-bindgen 0.70.1 */

use libc::*;
use crate::deps::*;
use crate::flint::*;


extern "C" {
    pub fn _fmpq_vec_init(len: slong) -> *mut fmpq;
    pub fn _fmpq_vec_clear(vec: *mut fmpq, len: slong);
    pub fn _fmpq_vec_randtest(
        f: *mut fmpq,
        state: *mut flint_rand_struct,
        len: slong,
        bits: flint_bitcnt_t,
    );
    pub fn _fmpq_vec_randtest_uniq_sorted(
        vec: *mut fmpq,
        state: *mut flint_rand_struct,
        len: slong,
        bits: flint_bitcnt_t,
    );
    pub fn _fmpq_vec_max_height(height: *mut fmpz, vec: *const fmpq, len: slong);
    pub fn _fmpq_vec_max_height_bits(vec: *const fmpq, len: slong) -> flint_bitcnt_t;
    pub fn _fmpq_vec_sort(vec: *mut fmpq, len: slong);
    pub fn _fmpq_vec_equal(vec1: *const fmpq, vec2: *const fmpq, len: slong) -> libc::c_int;
    pub fn _fmpq_vec_set_fmpz_vec(res: *mut fmpq, vec: *const fmpz, len: slong);
    pub fn _fmpq_vec_get_fmpz_vec_fmpz(num: *mut fmpz, den: *mut fmpz, a: *const fmpq, len: slong);
    pub fn _fmpq_vec_dot(res: *mut fmpq, vec1: *const fmpq, vec2: *const fmpq, len: slong);
    pub fn _fmpq_vec_fprint(file: *mut FILE, vec: *const fmpq, len: slong) -> libc::c_int;
    pub fn _fmpq_vec_print(vec: *const fmpq, len: slong) -> libc::c_int;
}