Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-03-27 05:16:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-27 05:17:30 +0300
commit9ba948a4859da3308033fa6dc54f74433d7e6a21 (patch)
tree0bd6e95eb59d9af03aa32d925c68e1cbebecc246 /source/blender/blenlib/intern/BLI_linklist.c
parent337eb8c1de4c57c34520b467d79779153335eecb (diff)
Cleanup: style, use braces for blenlib
Diffstat (limited to 'source/blender/blenlib/intern/BLI_linklist.c')
-rw-r--r--source/blender/blenlib/intern/BLI_linklist.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/source/blender/blenlib/intern/BLI_linklist.c b/source/blender/blenlib/intern/BLI_linklist.c
index 46499279659..3f99f65703f 100644
--- a/source/blender/blenlib/intern/BLI_linklist.c
+++ b/source/blender/blenlib/intern/BLI_linklist.c
@@ -41,8 +41,9 @@ int BLI_linklist_count(const LinkNode *list)
{
int len;
- for (len = 0; list; list = list->next)
+ for (len = 0; list; list = list->next) {
len++;
+ }
return len;
}
@@ -51,9 +52,11 @@ int BLI_linklist_index(const LinkNode *list, void *ptr)
{
int index;
- for (index = 0; list; list = list->next, index++)
- if (list->link == ptr)
+ for (index = 0; list; list = list->next, index++) {
+ if (list->link == ptr) {
return index;
+ }
+ }
return -1;
}
@@ -62,9 +65,11 @@ LinkNode *BLI_linklist_find(LinkNode *list, int index)
{
int i;
- for (i = 0; list; list = list->next, i++)
- if (i == index)
+ for (i = 0; list; list = list->next, i++) {
+ if (i == index) {
return list;
+ }
+ }
return NULL;
}
@@ -268,8 +273,9 @@ void BLI_linklist_free(LinkNode *list, LinkNodeFreeFP freefunc)
while (list) {
LinkNode *next = list->next;
- if (freefunc)
+ if (freefunc) {
freefunc(list->link);
+ }
MEM_freeN(list);
list = next;
@@ -281,8 +287,9 @@ void BLI_linklist_free_pool(LinkNode *list, LinkNodeFreeFP freefunc, struct BLI_
while (list) {
LinkNode *next = list->next;
- if (freefunc)
+ if (freefunc) {
freefunc(list->link);
+ }
BLI_mempool_free(mempool, list);
list = next;
@@ -303,8 +310,9 @@ void BLI_linklist_freeN(LinkNode *list)
void BLI_linklist_apply(LinkNode *list, LinkNodeApplyFP applyfunc, void *userdata)
{
- for (; list; list = list->next)
+ for (; list; list = list->next) {
applyfunc(list->link, userdata);
+ }
}
/* -------------------------------------------------------------------- */