storage.hpp 190 B

123456789
  1. #ifndef __STORAGE_HPP__
  2. #define __STORAGE_HPP__
  3. #include <cstdint>
  4. // Handle the messages received by a storage node
  5. void storage_received(const uint8_t *msgs, uint32_t num_msgs);
  6. #endif