2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* backup.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2011-01-05 23:45:15 -05:00
|
|
|
* Copyright (c) 2006-2011 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 03:08:33 -04:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2005-03-14 20:51:43 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-12-10 23:55:22 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_BACKUP_H
|
|
|
|
#define _ALPM_BACKUP_H
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
#include "alpm_list.h"
|
2011-06-16 14:15:11 -04:00
|
|
|
#include "alpm.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-06-28 00:39:43 -04:00
|
|
|
int _alpm_split_backup(const char *string, alpm_backup_t **backup);
|
2011-07-14 16:32:03 -04:00
|
|
|
alpm_backup_t *_alpm_needbackup(const char *file, alpm_pkg_t *pkg);
|
2011-06-28 00:39:43 -04:00
|
|
|
void _alpm_backup_free(alpm_backup_t *backup);
|
|
|
|
alpm_backup_t *_alpm_backup_dup(const alpm_backup_t *backup);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
#endif /* _ALPM_BACKUP_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|