FastaVector 1.0.0-beta
|
A store for FASTA data, either headers or sequences. More...
#include <FastaVectorString.h>
Data Fields | |
char * | charData |
the array of characters held by the string. More... | |
size_t | capacity |
the current maximum capacity of the string. More... | |
size_t | count |
the number of characters actually contained in the string. More... | |
Related Functions | |
(Note that these are not member functions.) | |
bool | fastaVectorStringInit (struct FastaVectorString *vector) |
initialize the given FastaVectorString . More... | |
void | fastaVectorStringDealloc (struct FastaVectorString *vector) |
deinitializes the given FastaVectorString . More... | |
bool | fastaVectorStringAddChar (struct FastaVectorString *vector, const char c) |
append a character to the FastaVectorString , growing the string's interal buffer if necessary. More... | |
A store for FASTA data, either headers or sequences.
|
related |
append a character to the FastaVectorString
, growing the string's interal buffer if necessary.
vector | the FastaVectorString to modify |
c | the character to append |
|
related |
deinitializes the given FastaVectorString
.
vector | the FastaVectorString to deinitialize |
|
related |
initialize the given FastaVectorString
.
vector | the FastaVectorString to initialize |
size_t FastaVectorString::capacity |
the current maximum capacity of the string.
char* FastaVectorString::charData |
the array of characters held by the string.
size_t FastaVectorString::count |
the number of characters actually contained in the string.