A struct containing the offset to the start of a sentence in your buffer or file that you passed to Brevity. You pass a pointer to this type to brGetOffset to get a list of significant sentences. Generally you will allocate an array of SentenceListT to hold the sentences that brGetOffset returns. See the sample code in that function for more information. typedef struct {
size_t start;
size_t length;
}
|