patch: make *outfile extern
[platform/upstream/cdrkit.git] / libhfs_iso / node.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 /* @(#)node.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 void n_init(node *, btree *, int, int);
34
35 int n_new(node *);
36 void n_free(node *);
37
38 void n_compact(node *);
39 int n_search(node *, unsigned char *);
40
41 void n_index(btree *, unsigned char *, unsigned long, unsigned char *, int *);
42 int n_split(node *, unsigned char *, int *);
43
44 void n_insertx(node *, unsigned char *, int);
45 int n_insert(node *, unsigned char *, int *);
46
47 int n_merge(node *, node *, unsigned char *, int *);
48 int n_delete(node *, unsigned char *, int *);