Raven Core  3.0.0
P2P Digital Currency
cleanse.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2015 The Bitcoin Core developers
3 // Copyright (c) 2017-2019 The Raven Core developers
4 // Distributed under the MIT software license, see the accompanying
5 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 
7 #ifndef RAVEN_SUPPORT_CLEANSE_H
8 #define RAVEN_SUPPORT_CLEANSE_H
9 
10 #include <stdlib.h>
11 
12 // Attempt to overwrite data in the specified memory span.
13 void memory_cleanse(void *ptr, size_t len);
14 
15 #endif // RAVEN_SUPPORT_CLEANSE_H
void memory_cleanse(void *ptr, size_t len)
Definition: cleanse.cpp:28