diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-11-21 19:03:21 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-11-21 19:03:21 +0000 |
commit | 1a16dab28d39dbfdd7642232b429cf43784f991d (patch) | |
tree | df933c206a1e72c3631be840d27d997c1103999d /libdiskfs | |
parent | a2b351fe3d8456d95674f24949847ab683c67a2e (diff) |
(diskfs_get_options): Bother providing declaration.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/diskfs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libdiskfs/diskfs.h b/libdiskfs/diskfs.h index 3e7e2bb2..2b874178 100644 --- a/libdiskfs/diskfs.h +++ b/libdiskfs/diskfs.h @@ -958,6 +958,11 @@ error_t diskfs_set_sync_interval (int interval); returned if some option is unrecognized. */ error_t diskfs_set_options (int argc, char **argv); +/* Return an argz string describing the current options. Fill *ARGZ + with a pointer to newly malloced storage holding the list and *LEN + to the length of that storage. */ +error_t diskfs_get_options (char **argz, unsigned *argz_len); + /* A pointer to an argp structure for the standard diskfs command line arguments. The user may call argp_parse on this to parse the command line, chain it onto the end of his own argp structure, or ignore it |