1\" Generated by /home/bacon/scripts/gen-get-set
2.TH BL_GFF_ATTRIBUTES_AE 3
3
4.SH LIBRARY
5.nf
6.na
7#include <biolibc/gff.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_GFF_ATTRIBUTES_AE(ptr, c)
19.ad
20.fi
21
22.SH ARGUMENTS
23.nf
24.na
25ptr             Pointer to a bl_gff_t structure
26c               Subscript to the attributes array
27.ad
28.fi
29
30.SH DESCRIPTION
31
32Accessor macro for attributes array elements.  Use this macro to reference
33an element of attributes in a bl_gff_t structure from functions
34that are not members of the class.
35This allows separation of implementation from interface.  While the
36implementation of the bl_gff_t structure may change, effort is made to
37preserve the API of functions and macros used to access it.
38
39.SH EXAMPLES
40
41.nf
42.na
43bl_gff_t        bl_gff;
44size_t          c;
45char *          element;
46
47element = BL_GFF_ATTRIBUTES_AE(&bl_gff,c);
48.ad
49.fi
50
51.SH SEE ALSO
52
53See biolibc/gff.h for a full list of macros.
54