diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-02-23 12:54:43 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-02-23 12:54:43 +0200 |
commit | 4750be2da326297830691c54adbab0a5dea14802 (patch) | |
tree | ae7b9643ce3fdbf6c0ddc78c2626fb81416f1404 /src/fspec/private | |
parent | 22fb54a917676e61f19d773cc4f931300ace925e (diff) |
wip
Diffstat (limited to 'src/fspec/private')
-rw-r--r-- | src/fspec/private/bcode-types.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/fspec/private/bcode-types.h b/src/fspec/private/bcode-types.h new file mode 100644 index 0000000..8c9ce74 --- /dev/null +++ b/src/fspec/private/bcode-types.h @@ -0,0 +1,16 @@ +#pragma once + +#include <inttypes.h> +#include <stdint.h> + +/** maximum size of string literals */ +#define PRI_FSPEC_STRSZ PRIu8 +typedef uint8_t fspec_strsz; + +/** maximum range of variable ids */ +#define PRI_FSPEC_VAR PRIu16 +typedef uint16_t fspec_var; + +/** maximum range of bytecode offsets */ +#define PRI_FSPEC_OFF PRIu32 +typedef uint32_t fspec_off; |