1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-07 21:18:59 +03:00
lvm2/old-tests/format1/pretty_print.h

20 lines
418 B
C
Raw Normal View History

2001-10-08 22:09:31 +04:00
/*
* Copyright (C) 2001 Sistina Software (UK) Limited.
*
* This file is released under the GPL.
*/
#ifndef _LVM_PRETTY_PRINT
#define _LVM_PRETTY_PRINT
#include "metadata.h"
#include <stdio.h>
void dump_pv(struct physical_volume *pv, FILE *fp);
void dump_lv(struct logical_volume *lv, FILE *fp);
void dump_vg(struct volume_group *vg, FILE *fp);
2001-10-09 13:22:50 +04:00
void dump_vg_names(struct list_head *vg_names, FILE *fp);
2001-10-08 22:09:31 +04:00
#endif