#include <biolibc/bed.h>
-lbiolibc -lxtend
FILE *bl_bed_skip_header(FILE *bed_stream)
stream Pointer to the FILE structure for reading the BED stream
Skip over header lines in bed input stream, leaving the FILE structure pointing
to the first character in the first line of data. The header is copied to a
temporary file whose FILE pointer is returned.
Pointer to the FILE structure of the temporary file.
FILE *header, *bed_stream;
header = bl_bed_skip_header(bed_stream);
bl_bed_read(3), xt_fopen(3)