// // h64e.h // H64E-2 // // Created by dianshi on 3/13/20. // Copyright © 2020 dianshi. All rights reserved. // #ifndef h64e_h #define h64e_h #include #include "h64e-model.h" /* Set data structure from arguments and use to handle data */ #define H64E_G_NONE 0 #define H64E_G_BYTE 1 #define H64E_G_WORD 2 #define H64E_G_DWORD 3 #define H64E_G_QWORD 4 #define H64E_O_START 0 #define H64E_O_NONE 0 #define H64E_O_STRING 1 #define H64E_O_INT8 2 #define H64E_O_UINT8 3 #define H64E_O_INT16 4 #define H64E_O_UINT16 5 #define H64E_O_INT32 6 #define H64E_O_UINT32 7 #define H64E_O_INT64 8 #define H64E_O_UINT64 9 #define H64E_O_END H64E_O_UINT64 typedef struct H64E_format { int flag_offset; /* output offset */ uint64_t offset_addr; /* offset postion */ uint8_t column_size; /* size of column to operate with */ int flag_no_group; /* dont output hex values */ uint8_t group; /* if there is need transdorm to specific type */ int flag_output; /* output convereted types */ uint8_t output_type; /* output in many different ways */ } H64E_format; typedef struct H64E_t { H64E_format fmt; H64E_stream_in sin; H64E_stream_out sout; int fd_in; int fd_out; } H64E_t; int h64e_init(H64E_t *s); int h64e_check_param( H64E_t *s ); int h64e_set_input(H64E_t *s); int h64e_set_output(H64E_t *s); int h64e_convert(H64E_t *s); int h64e_destroy(H64E_t *s); #endif /* h64e_h */