summaryrefslogtreecommitdiffstats
path: root/libmount/src/libmount.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'libmount/src/libmount.h.in')
-rw-r--r--libmount/src/libmount.h.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/libmount/src/libmount.h.in b/libmount/src/libmount.h.in
index a45e0fad7..30dc06b69 100644
--- a/libmount/src/libmount.h.in
+++ b/libmount/src/libmount.h.in
@@ -57,14 +57,17 @@ struct libmnt_iter;
/**
* libmnt_optmap:
+ * @name: option name[=type] where type is printf-like type specifier")
+ * @id: option ID or MS_* flags (e.g MS_RDONLY)
+ * @mask: MNT_{NOMTAB,INVERT,...} mask
*
* Mount options description (map)
*/
struct libmnt_optmap
{
- const char *name; /* option name[=%<type>] (e.g. "loop[=%s]") */
- int id; /* option ID or MS_* flags (e.g MS_RDONLY) */
- int mask; /* MNT_{NOMTAB,INVERT,...} mask */
+ const char *name;
+ int id;
+ int mask;
};
/*