1\" Generated by c2man from bl_fastx_free.c
2.TH bl_fastx_free 3
3
4.SH LIBRARY
5\" Indicate #includes, library name, -L and -l flags
6.nf
7.na
8#include <biolibc/fast.h>
9-lbiolibc -lxtend
10.ad
11.fi
12
13\" Convention:
14\" Underline anything that is typed verbatim - commands, etc.
15.SH SYNOPSIS
16.PP
17void    bl_fastx_free(bl_fastx_t *record)
18
19.SH ARGUMENTS
20.nf
21.na
22record  Pointer to a previously populated bl_fastx_t structure
23.ad
24.fi
25
26.SH DESCRIPTION
27
28Free memory allocated by bl_fastx_read()
29
30.SH EXAMPLES
31.nf
32.na
33
34bl_fastx_t  rec = BL_FASTX_INIT;
35
36while ( bl_fastx_read(stdin, &rec) != BL_READ_EOF )
37    bl_fastx_write(stdout, &rec, BL_FASTX_LINE_UNLIMITED);
38bl_fastx_free(&rec);
39.ad
40.fi
41
42.SH SEE ALSO
43
44bl_fastx_read(3), bl_fastx_write(3)
45bl_fastq_read(3), bl_fastq_write(3),
46
47