start work on new interpreter
This commit is contained in:
parent
7efa99d064
commit
2ac2f85512
15 changed files with 780 additions and 30 deletions
10
next/core/sleb128.h
Normal file
10
next/core/sleb128.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#ifndef GROWL_SLEB128_H
|
||||
#define GROWL_SLEB128_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
intptr_t growl_sleb128_decode(uint8_t **ptr);
|
||||
size_t growl_sleb128_peek(const uint8_t *ptr, intptr_t *out);
|
||||
|
||||
#endif // GROWL_SLEB128_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue