93af9a5
1 2 3 4 5 6 7 8 9 10 11
#pragma once #include <stdint.h> #include <stddef.h> #define TOKEN_LENGTH 16 typedef struct { char bytes[TOKEN_LENGTH]; } token_t; /* vim: set ts=4 sw=4 tw=0 noet :*/