Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / openbios / fs / hfs / include / node.h
1 /*
2  * libhfs - library for reading and writing Macintosh HFS volumes
3  * Copyright (C) 1996-1998 Robert Leslie
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  * $Id: node.h,v 1.7 1998/11/02 22:09:06 rob Exp $
21  */
22
23 void n_init(node *, btree *, int, int);
24
25 int n_new(node *);
26 int n_free(node *);
27
28 int n_search(node *, const byte *);
29
30 void n_index(const node *, byte *, unsigned int *);
31
32 void n_insertx(node *, const byte *, unsigned int);
33 int n_insert(node *, byte *, unsigned int *);
34
35 int n_delete(node *, byte *, int *);