Yattm - unified GTK instant-messaging client | |
[Generated for version 0.2-17 - Mon Jan 6 19:01:23 GMT+1 2003] |
00001 /* 00002 * Yattm 00003 * 00004 * Copyright (C) 1999, Torrey Searle <tsearle@uci.edu> 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 * 00020 */ 00021 00022 #ifndef __VALUE_PAIR_H__ 00023 #define __VALUE_PAIR_H__ 00024 00025 #include <stdio.h> 00026 00027 #include "prefs.h" 00028 00029 00030 typedef struct _value_pair 00031 { 00032 char key[MAX_PREF_NAME_LEN]; 00033 char value[MAX_PREF_LEN]; 00034 } value_pair; 00035 00036 #ifdef __cplusplus 00037 extern "C" { 00038 #endif 00039 00040 char * value_pair_get_value( GList * pairs, char * key ); 00041 void value_pair_print_values( GList * pairs, FILE * file, int indent ); 00042 void value_pair_free( GList * pairs ); 00043 GList * value_pair_update(GList * pairs, GList * new_list); 00044 GList * value_pair_add(GList * list, char * key, char * value); 00045 GList * value_pair_remove(GList * list, char * key); 00046 00047 #ifdef __cplusplus 00048 } /* extern "C" */ 00049 #endif 00050 00051 #endif /* __VALUE_PAIR_H__ */