From 5989629a7951e544ad4656672025a99ecd08c7c9 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sat, 11 Feb 2023 21:31:04 -0800 Subject: Change how slices work. I'm switching to a more macro-heavy solution. Hopefully it proves robust. --- bytecode/byte_slice.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 bytecode/byte_slice.h (limited to 'bytecode/byte_slice.h') diff --git a/bytecode/byte_slice.h b/bytecode/byte_slice.h new file mode 100644 index 0000000..7109b52 --- /dev/null +++ b/bytecode/byte_slice.h @@ -0,0 +1,10 @@ +#ifndef _BYTE_SLICE_H_ +#define _BYTE_SLICE_H_ + +#include + +#include "slice.h" + +DEFINE_SLICE(uint8_t) + +#endif -- cgit v1.3.1