2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* group.c
|
|
|
|
*
|
2015-01-21 01:31:20 -05:00
|
|
|
* Copyright (c) 2006-2015 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>
|
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
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
|
|
|
/* libalpm */
|
|
|
|
#include "group.h"
|
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "util.h"
|
2006-03-02 14:02:35 -05:00
|
|
|
#include "log.h"
|
|
|
|
#include "alpm.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-06-29 01:52:33 -04:00
|
|
|
alpm_group_t *_alpm_group_new(const char *name)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2012-04-24 22:05:51 -04:00
|
|
|
alpm_group_t *grp;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-06-28 00:37:16 -04:00
|
|
|
CALLOC(grp, 1, sizeof(alpm_group_t), return NULL);
|
2011-06-07 17:06:16 -04:00
|
|
|
STRDUP(grp->name, name, free(grp); return NULL);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return grp;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2011-06-29 01:52:33 -04:00
|
|
|
void _alpm_group_free(alpm_group_t *grp)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
if(grp == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-12 02:13:52 -05:00
|
|
|
FREE(grp->name);
|
|
|
|
/* do NOT free the contents of the list, just the nodes */
|
|
|
|
alpm_list_free(grp->packages);
|
2006-10-31 01:39:59 -05:00
|
|
|
FREE(grp);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2014-01-22 18:06:11 -05:00
|
|
|
/* vim: set noet: */
|