mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
21 lines
425 B
C
21 lines
425 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*/
|
|
|
|
#ifndef _LVM_FORMAT_TEXT_H
|
|
#define _LVM_FORMAT_TEXT_H
|
|
|
|
#include "lvm-types.h"
|
|
#include "metadata.h"
|
|
|
|
struct format_instance *backup_format_create(struct cmd_context *cmd,
|
|
const char *dir,
|
|
uint32_t retain_days,
|
|
uint32_t min_backups);
|
|
|
|
void backup_expire(struct format_instance *fi);
|
|
|
|
#endif
|