Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
bl_fastq_init(3)	   Library Functions Manual	      bl_fastq_init(3)

NAME
       bl_fastq_init() - Initialize all	fields in a FASTQ object

LIBRARY
       #include	<biolibc/fastq.h>
       -lbiolibc -lxtend

SYNOPSIS
       void    bl_fastq_init(bl_fastq_t	*record)

ARGUMENTS
       record  Pointer to the bl_fastq_t structure to initialize.

DESCRIPTION
       Initialize a bl_fastq_t structure.  This	must be	done before passing it
       to  bl_fastq_read()  for	 the  first time, so that bl_fastq_read() will
       know to allocate	memory for the fields.

EXAMPLES
       bl_fastq_t  rec;

       bl_fastq_init(&rec);
       bl_fastq_read(stdin, &rec);

SEE ALSO
       bl_fastq_read(3), bl_fastq_write(3)

							      bl_fastq_init(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=bl_fastq_init&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>

home | help