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.
26 lines
657 B
26 lines
657 B
#pragma once
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <limits.h>
|
|
|
|
#include "ft_elf.h"
|
|
#include "ft_printf.h"
|
|
#include "libft.h"
|
|
|
|
int ft_nm32(char *filename, int filesize, char *file, t_elf_opts opts);
|
|
int ft_nm64(char *filename, int filesize, char *file, t_elf_opts opts);
|
|
|
|
int strcmp_ignored(char *l, char *r);
|
|
|
|
int is_sym_text(char *name);
|
|
int is_sym_text2(char *name);
|
|
int is_sym_dynamic(char *name);
|
|
int is_sym_debug(char *name);
|
|
int is_sym_bss(char *name);
|
|
int is_sym_data(char *name);
|
|
int is_sym_uninit(char *name);
|
|
int is_sec_read_only(char *name);
|
|
int is_sec_read_only2(char *name);
|
|
|