From 74a133b5c267c17d2e1f9548881fdcab8847e206 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sun, 12 Aug 2018 01:04:45 +0430 Subject: fixes #1 --- text.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'text.py') diff --git a/text.py b/text.py index d70cb09..ae18de1 100644 --- a/text.py +++ b/text.py @@ -82,10 +82,30 @@ int32_t read_until_delimiter(int _fd, uint8_t delimiter) { return pos; }} }""" + + c_void_manager = """ +void void_manager(void* ptr) { + if (current_void_size == 0) { + void_train = malloc(100*sizeof(void*)); + current_void_size = 100; + } + if (current_void_count == current_void_size) { + current_void_size*=2; + void_train = realloc(void_train, current_void_size*sizeof(void*)); + if (void_train == NULL) { + printf("void train couldnt allocate more memory.\\n"); + } + } + void_train[current_void_count] = ptr; + current_void_count++; +}""" + c_read_leb_128_s_sig = "int64_t read_leb_128_s(int _fd, int max_size);\n" c_read_leb_128_u_sig = "uint64_t read_leb_128_u(int _fd, int max_size);\n" c_read_until_delimiter_sig = "int32_t read_until_delimiter(int _fd, uint8_t delimiter);\n" c_read_until_delimiter_proto = "read_until_delimiter(_fd, XXX)" + c_void_manager_sig = "void void_manager(void* ptr);" + c_void_manager_proto = "void_manager(XXX);" c_read_leb_macro_defs = """ #define READ_VAR_UINT_1(FD) read_leb128_u(FD, 1) -- cgit v1.2.3