diff options
author | bloodstalker <thabogre@gmail.com> | 2018-07-11 12:42:47 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-07-11 12:42:47 +0000 |
commit | c3e73915a96783535663aa51dfcbfb494e9b6c1c (patch) | |
tree | 9e807c8ca11dedb591f706ae07abed646104b65f /text.py | |
parent | update (diff) | |
download | faultreiber-c3e73915a96783535663aa51dfcbfb494e9b6c1c.tar.gz faultreiber-c3e73915a96783535663aa51dfcbfb494e9b6c1c.zip |
update
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,7 @@ # _*_ coding=utf-8 _*_ class text(): - header_list = """#include <fcntl.h>\n#include <inttypes.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <unistd.h>\n""" + header_list = """#include <fcntl.h>\n#include <inttypes.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <unistd.h>\n#include <string.h>\n""" header_inttype = "#include <inttypes.h>\n" main_sig = 'int main(int argc, char** argv)' pragma_weak_main = '#pragma weak main' @@ -11,8 +11,8 @@ class text(): autogen_warning = "// this file has been automatically generated by faultreiber\n" last_comment = "// last line intentionally left blank\n\n" read_func_sig = "int read_structured_file(char* path)" - c_read_elem_sig = "XXX ft_read_YYY(char* _ft_file_path, int _fd) {\n" - c_read_elem_sig_1 = "ft_read_XXX(_ft_file_path, _fd)" + c_read_elem_sig = "XXX ft_read_YYY(int _fd) {\n" + c_read_elem_sig_1 = "ft_read_XXX(_fd)" c_open_file = "int ft_read_file = open(_ft_file_path, RDONLY);\n" c_function_close = "}\n" c_function_dummy_dec = "XXX dummy;\n" @@ -25,4 +25,5 @@ class text(): c_read_2 = "read(_fd, &XXX, sizeof(uint16_t));\n" c_read_4 = "read(_fd, &XXX, sizeof(uint32_t));\n" c_read_8 = "read(_fd, &XXX, sizeof(uint64_t));\n" + c_read_gen = "read(_fd, &XXX, sizeof(YYY));\n" c_assign_struct = "XXX.YYY = ZZZ;\n" |