1//
2// hfs_misc.h - hfs routines
3//
4// Written by Eryk Vershen
5//
6
7/*
8 * Copyright 2000 by Eryk Vershen
9 */
10
11#ifndef __hfs_misc__
12#define __hfs_misc__
13
14#include "partition_map.h"
15
16//
17// Defines
18//
19
20
21//
22// Types
23//
24
25
26//
27// Global Constants
28//
29
30
31//
32// Global Variables
33//
34
35
36//
37// Forward declarations
38//
39char *get_HFS_name(partition_map *entry, int *kind);
40
41#endif /* __hfs_misc__ */
42