mirror of
https://review.haiku-os.org/haiku
synced 2025-01-23 23:04:48 +01:00
25 lines
401 B
C
25 lines
401 B
C
|
/*
|
||
|
* Copyright 2010 Haiku Inc. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef STRING_FOR_RATE_H
|
||
|
#define STRING_FOR_RATE_H
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
|
||
|
namespace BPrivate {
|
||
|
|
||
|
|
||
|
const char* string_for_rate(double rate, char* string, size_t stringSize,
|
||
|
double base = 1024.0f);
|
||
|
|
||
|
|
||
|
} // namespace BPrivate
|
||
|
|
||
|
|
||
|
using BPrivate::string_for_rate;
|
||
|
|
||
|
|
||
|
#endif // COLOR_QUANTIZER_H
|