summaryrefslogtreecommitdiffstats
path: root/fish/fish.h
diff options
context:
space:
mode:
Diffstat (limited to 'fish/fish.h')
-rw-r--r--fish/fish.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/fish/fish.h b/fish/fish.h
index 7c9c9555..ec1c82f3 100644
--- a/fish/fish.h
+++ b/fish/fish.h
@@ -92,6 +92,7 @@ extern int do_alloc (const char *cmd, int argc, char *argv[]);
extern int do_sparse (const char *cmd, int argc, char *argv[]);
extern int alloc_disk (const char *filename, const char *size,
int add, int sparse);
+extern int parse_size (const char *str, off_t *size_rtn);
/* in echo.c */
extern int do_echo (const char *cmd, int argc, char *argv[]);
@@ -129,6 +130,9 @@ extern void prepare_drive (const char *filename, prep_data *data,
const char *device);
extern void prep_error (prep_data *data, const char *filename, const char *fs, ...) __attribute__((noreturn, format (printf,3,4)));
+/* in prep_lv.c */
+extern int vg_lv_parse (const char *device, char **vg, char **lv);
+
/* in progress.c */
extern void reset_progress_bar (void);
extern void progress_callback (guestfs_h *g, void *data, int proc_nr, int serial, uint64_t position, uint64_t total);