patch: make *outfile extern
[platform/upstream/cdrkit.git] / libhfs_iso / btree.h
1 /*
2  * This file has been modified for the cdrkit suite.
3  *
4  * The behaviour and appearence of the program code below can differ to a major
5  * extent from the version distributed by the original author(s).
6  *
7  * For details, see Changelog file distributed with the cdrkit package. If you
8  * received this file from another source then ask the distributing person for
9  * a log of modifications.
10  *
11  */
12
13 /* @(#)btree.h  1.1 00/03/05 joerg */
14 /*
15  * hfsutils - tools for reading and writing Macintosh HFS volumes
16  * Copyright (C) 1996, 1997 Robert Leslie
17  *
18  * This program is free software; you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation; either version 2 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31  */
32
33 int bt_getnode(node *);
34 int bt_putnode(node *);
35
36 int bt_readhdr(btree *);
37 int bt_writehdr(btree *);
38
39 int bt_space(btree *, unsigned int);
40
41 int bt_insertx(node *, unsigned char *, int *);
42 int bt_insert(btree *, unsigned char *, int);
43
44 int bt_deletex(node *, unsigned char *, unsigned char *, int *);
45 int bt_delete(btree *, unsigned char *);
46
47 int bt_search(btree *, unsigned char *, node *);