mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
22 lines
333 B
C++
22 lines
333 B
C++
|
//
|
||
|
// MemoryFuzzer.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 19/10/2016.
|
||
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef MemoryFuzzer_hpp
|
||
|
#define MemoryFuzzer_hpp
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <cstddef>
|
||
|
|
||
|
namespace Memory {
|
||
|
|
||
|
void Fuzz(uint8_t *buffer, size_t size);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* MemoryFuzzer_hpp */
|