// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-present The Limenka developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef LIMENKA_COMMON_SYSTEM_RAM_H #define LIMENKA_COMMON_SYSTEM_RAM_H #include #include /** * Return the total RAM available on the current system, if detectable. */ std::optional TryGetTotalRam(); #endif // LIMENKA_COMMON_SYSTEM_RAM_H