2012-01-06 12:12:57 +08:00
|
|
|
// ASEPRITE base library
|
2013-01-27 23:13:13 +08:00
|
|
|
// Copyright (C) 2001-2013 David Capello
|
2012-01-06 06:45:03 +08:00
|
|
|
//
|
2012-09-24 10:24:07 +08:00
|
|
|
// This source file is distributed under a BSD-like license, please
|
2012-01-06 06:45:03 +08:00
|
|
|
// read LICENSE.txt for more information.
|
|
|
|
|
|
|
|
#ifndef BASE_MEM_UTILS_H_INCLUDED
|
|
|
|
#define BASE_MEM_UTILS_H_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
std::string get_pretty_memory_size(size_t memsize);
|
|
|
|
|
|
|
|
#endif
|