xref: /haiku/headers/private/shared/StringForRate.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2010 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef STRING_FOR_RATE_H
6 #define STRING_FOR_RATE_H
7 
8 #include <SupportDefs.h>
9 
10 
11 namespace BPrivate {
12 
13 
14 const char* string_for_rate(double rate, char* string, size_t stringSize,
15 	double base = 1000.0f);
16 
17 
18 }	// namespace BPrivate
19 
20 
21 using BPrivate::string_for_rate;
22 
23 
24 #endif // COLOR_QUANTIZER_H
25