Extracted the context initialization from the main source file

This commit is contained in:
Alexandre Paillier
2022-05-02 15:28:50 +02:00
parent b2fe2f26ba
commit 54fe26a301
6 changed files with 193 additions and 144 deletions

View File

@@ -0,0 +1,13 @@
#ifndef EIP712_CTX_H_
#define EIP712_CTX_H_
#include <stdbool.h>
extern uint8_t *typenames_array;
extern uint8_t *structs_array;
extern uint8_t *current_struct_fields_array;
bool init_eip712_context(void);
#endif // EIP712_CTX_H_