Clean up main.c a bit
[centaur.git] / include / printing.h
1 #ifndef __PRINTING_H__
2 #define __PRINTING_H__
3
4 #include <libelf.h>
5
6
7 void printHeader(Elf *e);
8
9 void printSegmentsWithSection(Elf *e, Elf_Scn *scn);
10 void printSection(Elf *e, Elf_Scn *scn);
11 void printSections(Elf *e);
12
13 char* segmentTypeStr(size_t pt);
14 void printSectionsInSegment(Elf *e, GElf_Phdr *phdr);
15 void printSegments(Elf *e);
16
17
18 #endif