More stuff I guess?

This commit is contained in:
Pietro Gagliardi 2016-12-19 17:15:48 -05:00
parent 78f5ca5eb5
commit 643e2937c4
1 changed files with 7 additions and 0 deletions

View File

@ -342,6 +342,13 @@ void attrlistInsertCharactersUnattributed(struct attrlist *alist, size_t start,
// If start == 0, the attributes are those of character 0.
void attrlistInsertCharactersExtendingAttributes(struct attrlist *alist, size_t start, size_t count)
{
size_t from;
from = start - 1;
if (start == 0)
from = 0;
TODO
}
void attrlistRemoveAttribute(struct attrlist *alist, uiAttribute type, size_t start, size_t end)