summaryrefslogtreecommitdiff
path: root/include/printing.h
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-01-25 15:24:36 +0000
committernorly <ny-git@enpas.org>2013-02-11 01:24:36 +0000
commitd9eb4398773cbda1dc185f4cf7b1b0e4cb9fb135 (patch)
treea2421aa140b17db64df439f894fa892833e3ac96 /include/printing.h
parent43e69328d849391abfed996214eed1dca49b3ac3 (diff)
Print ELF header/segments/sections
Diffstat (limited to 'include/printing.h')
-rw-r--r--include/printing.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/printing.h b/include/printing.h
new file mode 100644
index 0000000..bda2fc1
--- /dev/null
+++ b/include/printing.h
@@ -0,0 +1,18 @@
+#ifndef __PRINTING_H__
+#define __PRINTING_H__
+
+#include <libelf.h>
+
+
+void printHeader(Elf *e);
+
+void printSegmentsWithSection(Elf *e, Elf_Scn *scn);
+void printSection(Elf *e, Elf_Scn *scn);
+void printSections(Elf *e);
+
+char* segmentTypeStr(size_t pt);
+void printSectionsInSegment(Elf *e, GElf_Phdr *phdr);
+void printSegments(Elf *e);
+
+
+#endif