Wrote the prototypes for the other functions I will need.

This commit is contained in:
Pietro Gagliardi 2016-12-19 11:07:52 -05:00
parent 7ebfe73bce
commit fee06b9553
1 changed files with 22 additions and 0 deletions

View File

@ -265,3 +265,25 @@ void attrlistInsertAt(struct attrlist *alist, uiAttribute type, uintptr_t val, s
break; break;
attrInsertBefore(alist, tail, before); attrInsertBefore(alist, tail, before);
} }
void attrlistInsertCharacters(struct attrlist *alist, size_t start, size_t end)
{
}
// The attributes are those of character start - 1.
// If start == 0, the attributes are those of character 0.
void attrlistInsertCharactersExtendingAttributes(struct attrlist *alist, size_t start, size_t end)
{
}
void attrlistRemoveAttribute(struct attrlist *alist, uiAttribute type, size_t start, size_t end)
{
}
void attrlistRemoveAttributes(struct attrlist *alist, size_t start, size_t end)
{
}
void attrlistRemoveCharacters(struct attrlist *alist, size_t start, size_t end)
{
}