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

FreeBSD Manual Pages

  
 
  

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

NAME
       bl_fastq_free() - Free memory for a FASTQ object

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

SYNOPSIS
       void    bl_fastq_free(bl_fastq_t	*record)

ARGUMENTS
       record  Pointer to a previously populated bl_fastq_t structure

DESCRIPTION
       Free memory allocated by	bl_fastq_read()

EXAMPLES
       bl_fastq_t  rec = BL_FASTQ_INIT;

       while ( bl_fastq_read(stdin, &rec) != BL_READ_EOF )
	   bl_fastq_write(stdout, &rec,	BL_FASTQ_LINE_UNLIMITED);
       bl_fastq_free(&rec);

SEE ALSO
       bl_fastq_read(3),	  bl_fastq_write(3)	     bl_fastq_read(3),
       bl_fastq_write(3),

							      bl_fastq_free(3)

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

home | help