summaryrefslogtreecommitdiff
path: root/include/elfhandle.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/elfhandle.h')
-rw-r--r--include/elfhandle.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/elfhandle.h b/include/elfhandle.h
index b1a92ea..e948180 100644
--- a/include/elfhandle.h
+++ b/include/elfhandle.h
@@ -3,9 +3,13 @@
#include <libelf.h>
+/*!
+ * A simple pair of a file descriptor and a libelf handle,
+ * used to simplify elfucli.
+ */
typedef struct {
- int fd;
- Elf *e;
+ int fd; /*!< File handle */
+ Elf *e; /*!< libelf handle */
} ELFHandles;