You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
523 B
22 lines
523 B
#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);
|
|
|
|
|
|
|