xref: /haiku/src/apps/drivesetup/Support.h (revision ec103c3c389cb3f2827c816f7544eb2a51ea49c6)
1*ec103c3cSStephan Aßmus /*
2*ec103c3cSStephan Aßmus  * Copyright 2002-2007 Haiku Inc. All rights reserved.
3*ec103c3cSStephan Aßmus  * Distributed under the terms of the MIT license.
4*ec103c3cSStephan Aßmus  */
5*ec103c3cSStephan Aßmus #ifndef SUPPORT_H
6*ec103c3cSStephan Aßmus #define SUPPORT_H
7*ec103c3cSStephan Aßmus 
8*ec103c3cSStephan Aßmus 
9*ec103c3cSStephan Aßmus #include <SupportDefs.h>
10*ec103c3cSStephan Aßmus 
11*ec103c3cSStephan Aßmus 
12*ec103c3cSStephan Aßmus class BPartition;
13*ec103c3cSStephan Aßmus 
14*ec103c3cSStephan Aßmus 
15*ec103c3cSStephan Aßmus const char* string_for_size(off_t size, char *string);
16*ec103c3cSStephan Aßmus 
17*ec103c3cSStephan Aßmus void dump_partition_info(const BPartition* partition);
18*ec103c3cSStephan Aßmus 
19*ec103c3cSStephan Aßmus 
20*ec103c3cSStephan Aßmus #endif // SUPPORT_H
21