1 /* nv_pair.c - the opkg package management system
2 
3    Carl D. Worth
4 
5    Copyright (C) 2001 University of Southern California
6 
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11 
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17 
18 #include "nv_pair.h"
19 #include "libbb/libbb.h"
20 
nv_pair_init(nv_pair_t * nv_pair,const char * name,const char * value)21 int nv_pair_init(nv_pair_t * nv_pair, const char *name, const char *value)
22 {
23 
24 	nv_pair->name = xstrdup(name);
25 	nv_pair->value = xstrdup(value);
26 
27 	return 0;
28 }
29 
nv_pair_deinit(nv_pair_t * nv_pair)30 void nv_pair_deinit(nv_pair_t * nv_pair)
31 {
32 	free(nv_pair->name);
33 	nv_pair->name = NULL;
34 
35 	free(nv_pair->value);
36 	nv_pair->value = NULL;
37 }
38