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

FreeBSD Manual Pages

  
 
  

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

NAME
       bl_fasta_init() - Initialize all	fields of a FASTA object

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

SYNOPSIS
       void    bl_fasta_init(bl_fasta_t	*record)

ARGUMENTS
       record  Pointer to the bl_fasta_t structure to initialize.

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

EXAMPLES
       bl_fasta_t  rec;

       bl_fasta_init(&rec);
       bl_fasta_read(stdin, &rec);

SEE ALSO
       bl_fasta_read(3), bl_fasta_write(3)

							      bl_fasta_init(3)

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

home | help