#pragma once #include "ft_elf.h" #include "stdio.h" #include "stdlib.h" #include "ctype.h" #include "unistd.h" #include "ft_printf.h" int ft_re32(char *filename, int filesize, char *file, t_opts opts); int ft_re64(char *filename, int filesize, char *file, t_opts opts); char *get_section_type(int type); char *get_section_flags(int flags); char *get_sym_type(int type); char *get_sym_bind(int bind); char *get_sym_vis(int vis); char *get_sym_shndx(int shndx); char *get_sh_type(int type); char *get_sh_flag(int flag);