bytearray.hpp 111 B

12345678910
  1. #pragma once
  2. #include <stdint.h>
  3. #include <vector>
  4. namespace std {
  5. using bytearray = vector<uint8_t>;
  6. }