#include <biolibc/gff.h>
-lbiolibc -lxtend
void bl_gff_init(bl_gff_t *feature)
feature Address of a bl_gff_t structure
Initialize a bl_gff_t object, setting all fields to sentinel values such as 0,
NULL, or '.' as appropriate. Note that bl_gff_t objects defined as structures,
not pointers to structures, can also be initialized with the BL_GFF_INIT
macro.
bl_gff_t feature1 = BL_GFF_INIT,
*feature2;
if ( (feature2 = xt_malloc(1, sizeof(*feature2))) != NULL )
bl_gff_init(feature2);
bl_gff_read(3), bl_gff_free(3)