diff options
author | Miles Bader <miles@gnu.org> | 1996-09-23 16:48:50 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-23 16:48:50 +0000 |
commit | 4e01a2d56508ec64900772938bd3c45dce306915 (patch) | |
tree | c8c34cda157ae5945f7179667dc95406463377f9 /libtrivfs | |
parent | c66b660af3b4461576445366c8b278c861113578 (diff) |
(trivfs_get_options):
Declaration removed.
(trivfs_append_args):
New declaration.
Diffstat (limited to 'libtrivfs')
-rw-r--r-- | libtrivfs/trivfs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libtrivfs/trivfs.h b/libtrivfs/trivfs.h index 4274226f..fc6a1c72 100644 --- a/libtrivfs/trivfs.h +++ b/libtrivfs/trivfs.h @@ -194,10 +194,10 @@ extern struct argp *trivfs_runtime_argp; error_t trivfs_set_options (struct trivfs_control *fsys, char *argz, size_t argz_len); -/* Return runtime options for FSYS in ARGZ & ARGZ_LEN. ARGZ should be - allocated with malloc. The default definition for this routine returns - EOPNOTSUPP. */ -error_t trivfs_get_options (struct trivfs_control *fsys, - char **argz, size_t *argz_len); +/* Append to the malloced string *ARGZ of length *ARGZ_LEN a NUL-separated + list of the arguments to this translator. The default definition of this + routine simply calls diskfs_append_std_options. */ +error_t trivfs_append_args (struct trivfs_control *fsys, + char **argz, unsigned *argz_len); #endif /* __TRIVFS_H__ */ |