00001 /****************************************************************************** 00002 * $Id: dictionary.h,v 1.2 2003/12/07 18:14:22 gareuselesinge Exp $ 00003 * This file is part of liberopops (http://liberopops.sf.net) * 00004 * This file is distributed under the terms of GNU GPL license. * 00005 ******************************************************************************/ 00006 00007 00008 /******************************************************************************/ 00014 /******************************************************************************/ 00015 00016 00017 #include "list.h" 00018 00020 struct dictionary_t 00021 { 00022 list_t *head; 00023 }; 00024 00032 void* dictionary_find(struct dictionary_t *d,char* key); 00033 00042 int dictionary_remove(struct dictionary_t *d,char* key); 00043 int dictionary_add(struct dictionary_t *d,char* key,void *data); 00053
1.3.6-20040222