1\" Generated by /home/bacon/scripts/gen-get-set
2.TH BL_FASTQ_QUAL_LEN 3
3
4.SH LIBRARY
5.nf
6.na
7#include <biolibc/fastq.h>
8-lbiolibc -lxtend
9.ad
10.fi
11
12\" Convention:
13\" Underline anything that is typed verbatim - commands, etc.
14.SH SYNOPSIS
15.PP
16.nf
17.na
18BL_FASTQ_QUAL_LEN(ptr)
19.ad
20.fi
21
22.SH ARGUMENTS
23.nf
24.na
25ptr             Pointer to a bl_fastq_t structure
26.ad
27.fi
28
29.SH DESCRIPTION
30
31Accessor macro for qual_len.  Use this macro to reference qual_len in
32a bl_fastq_t structure from functions that are not members of the class.
33This allows separation of implementation from interface.  While the
34implementation of the bl_fastq_t structure may change, effort is made to
35preserve the API of functions and macros used to access it.
36
37.SH EXAMPLES
38
39.nf
40.na
41bl_fastq_t      bl_fastq;
42size_t          qual_len;
43
44qual_len = BL_FASTQ_QUAL_LEN(&bl_fastq);
45.ad
46.fi
47
48.SH SEE ALSO
49
50See biolibc/fastq.h for a full list of macros.
51