ft_nm/src/header.c

8 lines
100 B
C
Raw Normal View History

2024-03-15 14:58:57 +00:00
#include "ft_nm.h"
int check_header(Elf64_Ehdr *header) {
2024-03-19 10:22:37 +00:00
(void)header;
2024-03-15 14:58:57 +00:00
return FT_NM_SUCCESS;
}
2024-03-19 10:22:37 +00:00