File: heap.h

package info (click to toggle)
simhash 0.0.20090101-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 92 kB
  • ctags: 61
  • sloc: ansic: 540; makefile: 17; sh: 12
file content (11 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright (c) 2005-2007 Bart Massey
 * ALL RIGHTS RESERVED
 * Please see the file COPYING in this directory for license information.
 */

extern unsigned *heap;
extern int nheap;
extern void heap_reset(int);
extern unsigned heap_extract_max(void);
extern void heap_insert(unsigned);