Annotate doxygen-style
[centaur.git] / include / elfhandle.h
index b1a92eac04115f2390bd864455b3407c739cab49..e9481808c36ee694b0489ab62a8ef497ae038ece 100644 (file)
@@ -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;