2013-08-09 08:01:20 +08:00
|
|
|
// Aseprite Base Library
|
|
|
|
// Copyright (c) 2001-2013 David Capello
|
2012-01-06 06:45:03 +08:00
|
|
|
//
|
2013-08-09 08:01:20 +08:00
|
|
|
// This source file is distributed under MIT license,
|
|
|
|
// please read LICENSE.txt for more information.
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
#ifndef BASE_MEM_UTILS_H_INCLUDED
|
|
|
|
#define BASE_MEM_UTILS_H_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace base {
|
|
|
|
|
|
|
|
std::string get_pretty_memory_size(size_t memsize);
|
|
|
|
|
|
|
|
} // namespace base
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
#endif
|