10 lines
111 B
C++
10 lines
111 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
#include <vector>
|
|
|
|
namespace std {
|
|
|
|
using bytearray = vector<uint8_t>;
|
|
|
|
}
|