| 1 | |
|---|
| 2 | /* version 3.6. (c) Copyright 1993-2000 by the University of Washington. |
|---|
| 3 | Written by Joseph Felsenstein, Akiko Fuseki, Sean Lamont, and Andrew Keeffe. |
|---|
| 4 | Permission is granted to copy and use this program provided no fee is |
|---|
| 5 | charged for it and provided that this copyright notice is not removed. */ |
|---|
| 6 | |
|---|
| 7 | /* |
|---|
| 8 | dollo.h: included in dollop, dolmove & dolpenny |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | #ifndef OLDC |
|---|
| 12 | /* function prototypes */ |
|---|
| 13 | void correct(node *, long, boolean, bitptr, pointptr); |
|---|
| 14 | void fillin(node *); |
|---|
| 15 | void postorder(node *); |
|---|
| 16 | void count(long *, bitptr, steptr, steptr); |
|---|
| 17 | void filltrav(node *); |
|---|
| 18 | void hyprint(struct htrav_vars *, boolean *, bitptr, Char *); |
|---|
| 19 | void hyptrav(node *, boolean *, bitptr, long, boolean, Char *, pointptr, |
|---|
| 20 | gbit *, bitptr, bitptr); |
|---|
| 21 | void hypstates(long, boolean, Char *, pointptr, node *, gbit *, |
|---|
| 22 | bitptr, bitptr); |
|---|
| 23 | void drawline(long, double, node *); |
|---|
| 24 | void printree(double, boolean, node *); |
|---|
| 25 | void writesteps(boolean, boolean, steptr); |
|---|
| 26 | /* function prototypes */ |
|---|
| 27 | #endif |
|---|
| 28 | |
|---|