7232789211
Change-Id: If7dd36321e1ed2feb20b4c76ddaf303bc997d8b7 Reviewed-on: https://review.haiku-os.org/c/1018 Reviewed-by: Jérôme Duval <jerome.duval@gmail.com> Reviewed-by: Axel Dörfler <axeld@pinc-software.de>
26 lines
447 B
C++
26 lines
447 B
C++
/*
|
|
* Copyright 2010 Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef STRING_FOR_SIZE_H
|
|
#define STRING_FOR_SIZE_H
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
const char* string_for_size(double size, char* string, size_t stringSize);
|
|
int64 parse_size(const char* sizeString);
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
using BPrivate::string_for_size;
|
|
using BPrivate::parse_size;
|
|
|
|
|
|
#endif // STRING_FOR_SIZE_H
|