From fee06b95532fb73d52096c17055e21baaddefe27 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 19 Dec 2016 11:07:52 -0500 Subject: [PATCH] Wrote the prototypes for the other functions I will need. --- common/exp_attrdll.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/common/exp_attrdll.c b/common/exp_attrdll.c index c9cd1c68..11e70d32 100644 --- a/common/exp_attrdll.c +++ b/common/exp_attrdll.c @@ -265,3 +265,25 @@ void attrlistInsertAt(struct attrlist *alist, uiAttribute type, uintptr_t val, s break; 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) +{ +}