1\" Generated by c2man from bl_gff_set_attributes.c
2.TH bl_gff_set_attributes 3
3
4.SH LIBRARY
5\" Indicate #includes, library name, -L and -l flags
6.nf
7.na
8#include <biolibc/gff.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
17.nf
18.na
19int     bl_gff_set_attributes(bl_gff_t *bl_gff_ptr, char * new_attributes)
20.ad
21.fi
22
23.SH ARGUMENTS
24.nf
25.na
26bl_gff_ptr      Pointer to the structure to set
27new_attributes  The new value for attributes
28.ad
29.fi
30
31.SH DESCRIPTION
32
33Mutator for attributes member in a bl_gff_t structure.
34Use this function to set attributes in a bl_gff_t variable
35from non-member functions.  This function performs a direct
36assignment for scalar or pointer structure members.  If
37attributes is a pointer, data previously pointed to should
38generally be freed before calling this function to avoid memory
39leaks.
40
41Note that there is an equivalent macro (), which performs
42this function with no data verification or function call overhead.
43Use the macro version to maximize performance where the validity
44of new_attributes is guaranteed by other means.
45
46.SH EXAMPLES
47.nf
48.na
49
50bl_gff_t        bl_gff;
51char *          new_attributes;
52
53if ( bl_gff_set_attributes(&bl_gff, new_attributes) == BL_DATA_OK )
54{
55}
56.ad
57.fi
58
59.SH SEE ALSO
60
61(3)
62
63