summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authoreschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-06-15 20:17:10 +0000
committereschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-06-15 20:17:10 +0000
commit251653b5b4d169b03027373bffdc68aa2d58433d (patch)
tree258d306680e05b25b63069e755dc00ca10caf955 /src/include
parente21a6368865941abd417462edf43c54d0d1d11b0 (diff)
Remove unused and broken BinaryTree implementation
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4834 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include')
-rw-r--r--src/include/util_BinaryTree.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/include/util_BinaryTree.h b/src/include/util_BinaryTree.h
deleted file mode 100644
index 0eaabaa2..00000000
--- a/src/include/util_BinaryTree.h
+++ /dev/null
@@ -1,58 +0,0 @@
- /*@@
- @header BinaryTree.h
- @date Mon Oct 5 11:01:20 1998
- @author Tom Goodale
- @desc
- Prototypes and data definitions for binary tree routines.
- @enddesc
- @version $Header$
- @@*/
-
-#ifndef _BINARYTREE_H_
-#define _BINARYTREE_H_ 1
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-typedef struct T_TREE
-{
- struct T_TREE *left;
- struct T_TREE *right;
- struct T_TREE *next;
-
- void *data;
-} uBinTree;
-
-
-uBinTree *Util_BinTreeStoreData(uBinTree *root,
- uBinTree *subtree,
- void *data,
- int (*compare)(const void *, const void *));
-
-int Util_BinTreeTraverseInorder(uBinTree *root,
- int (*process)(void *, void *),
- void *info);
-
-int Util_BinTreeTraversePreorder(uBinTree *root,
- int (*process)(void *, void *),
- void *info);
-
-int Util_BinTreeTraversePostorder(uBinTree *root,
- int (*process)(void *, void *),
- void *info);
-
-int Util_BinTreePrintNodes(uBinTree *root,
- int depth,
- void (*print_node)(void *, int));
-
-uBinTree *Util_BinTreeFindNode(uBinTree *root,
- void *data,
- int (*compare)(const void *, const void *));
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif