Go to the source code of this file.
Functions | |
void | ccn_destroy_dict (struct ccn_dict **dp) |
Destroy a dictionary dynamically allocated by ccn_extend_dict. | |
int | ccn_extend_dict (const char *dict_file, struct ccn_dict *d, struct ccn_dict **rdp) |
Create a dictionary by combining a file of key/value pairs with an existing dictionary. |
Part of the CCNx C Library.
Copyright (C) 2010 Palo Alto Research Center, Inc.
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Definition in file extend_dict.h.
void ccn_destroy_dict | ( | struct ccn_dict ** | dp | ) |
Destroy a dictionary dynamically allocated by ccn_extend_dict.
dp | Pointer to a pointer to a ccn_dict which will be freed and set to NULL |
Definition at line 59 of file ccn_extend_dict.c.
Create a dictionary by combining a file of key/value pairs with an existing dictionary.
dict_file | the name of a file containing integer,name pairs one per line | |
d | a pre-existing dictionary that will be copied in the result | |
rdp | a pointer to storage into which a pointer to the result dictionary will be stored |
Definition at line 84 of file ccn_extend_dict.c.
Referenced by main().