summaryrefslogtreecommitdiff
path: root/gl/lib/heap.h
diff options
context:
space:
mode:
authorPaul R. Eggert <eggert@cs.ucla.edu>2010-07-25 21:18:14 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2010-07-25 21:18:35 -0700
commit074566823ec313ad350e658c6765349d2ceef881 (patch)
tree687100bd9149c7939ce829c98d9b57a604b0548f /gl/lib/heap.h
parentde949fc12dffef87e381a821c18887e4efdd1b00 (diff)
downloadcoreutils-074566823ec313ad350e658c6765349d2ceef881.tar.xz
sort: make struct heap private
* gl/lib/heap.c (struct heap): Move this here... * gl/lib/heap.h (struct heap): ... from here, as outside code no longer needs to access any of these members.
Diffstat (limited to 'gl/lib/heap.h')
-rw-r--r--gl/lib/heap.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/gl/lib/heap.h b/gl/lib/heap.h
index b61adf619..cbfeb0494 100644
--- a/gl/lib/heap.h
+++ b/gl/lib/heap.h
@@ -20,14 +20,6 @@
#include <stddef.h>
-struct heap
-{
- void **array; /* array[0] is not used */
- size_t capacity; /* Array size */
- size_t count; /* Used as index to last element. Also is num of items. */
- int (*compare) (void const *, void const *);
-};
-
struct heap *heap_alloc (int (*) (void const *, void const *), size_t);
void heap_free (struct heap *);
int heap_insert (struct heap *heap, void *item);