1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![allow(non_snake_case)]
#![allow(raw_pointer_derive)]


use htslib::vcf::{bcf1_t, bcf_hdr_t};


extern "C" {
    pub fn bcf_trim_alleles(hdr: *const bcf_hdr_t, line: *mut bcf1_t) -> ::libc::c_int;
}