1// LAF Base Library
2// Copyright (c) 2001-2016 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef BASE_MEM_UTILS_H_INCLUDED
8#define BASE_MEM_UTILS_H_INCLUDED
9#pragma once
10
11#include <string>
12
13namespace base {
14
15 std::string get_pretty_memory_size(std::size_t memsize);
16
17} // namespace base
18
19#endif
20