aboutsummaryrefslogtreecommitdiff
path: root/include/libbio.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-09-28 13:39:24 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-09-28 13:39:24 -0700
commitbc53100f1ef063e09d77e8670e1796bc67017411 (patch)
treee84b23c3afceb88f75088be2749683b407d1cea2 /include/libbio.h
parent83cd586ea304d6f6aa190c65ee796baaba1941a7 (diff)
Checkin: various small changes
Diffstat (limited to 'include/libbio.h')
-rw-r--r--include/libbio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libbio.h b/include/libbio.h
index f84b081..9438b74 100644
--- a/include/libbio.h
+++ b/include/libbio.h
@@ -18,8 +18,8 @@ typedef struct bio·Tree
bio·Node *root;
int nleaf;
- mem·Allocator heap;
- void *h;
+ mem·Allocator mem;
+ void *heap;
} bio·Tree;
/* clade manipulation */
@@ -42,7 +42,7 @@ void *phylo·preorder(bio·Node *clade, void *(*op)(bio·Node*, void*), void *ct
void phylo·getleafs(bio·Tree tree, bio·Node **leafs);
/* newick i/o */
-error bio·readnewick(io·Peeker stream, void*, bio·Tree* tree);
+error bio·readnewick(io·Peeker io, void* rdr, bio·Tree* tree);
error bio·writenewick(bio·Tree tree, io·Putter out, void*);
// -----------------------------------------------------------------------