File: pair_ht.h

package info (click to toggle)
a2ps 4.13-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 9,820 kB
  • ctags: 4,765
  • sloc: ansic: 31,099; sh: 10,465; lex: 2,285; perl: 1,470; yacc: 757; makefile: 696; lisp: 399; ada: 263; objc: 189; java: 151; f90: 109; pascal: 109; sed: 107; ml: 85; sql: 74; modula3: 33; haskell: 32; python: 24
file content (92 lines) | stat: -rw-r--r-- 2,603 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * pair_ht.h
 *
 * Two (char *) hash table
 * Copyright (c) 1988, 89, 90, 91, 92, 93 Miguel Santana
 * Copyright (c) 1995, 96, 97, 98 Akim Demaille, Miguel Santana
 *
 */

/*
 * This file is part of a2ps.
 * 
 * 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, 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
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

/*
 * $Id: pair_ht.h,v 1.3 1998/02/11 10:13:21 demaille Exp $
 */
#ifndef _PAIR_HT_H_
#define _PAIR_HT_H_

struct pair_htable;

/*
 * The type of the functions given as argument to pair_table_map
 */
typedef void (* pair_ht_map_fn_t) PARAMS ((int i, 
					   const char * key, 
					   const char * value, 
					   void const * arg));
typedef int (* pair_ht_select_fn_t) PARAMS ((const char * key, 
					     const char * value));

/*
 * String_Entrys
 */
struct pair_htable * pair_table_new PARAMS ((void));
void pair_table_free PARAMS ((struct pair_htable * table));

/*
 * KEY and VALUE will be strdup'd
 */
void pair_add PARAMS ((struct pair_htable * table, 
		       const char * key, const char * value));

/*
 * The key and value of the matching item  will be free'd
 * (No problem if KEY matches nothing)
 */
void pair_delete PARAMS ((struct pair_htable * table, const char * key));

/*
 * Returns NULL when KEY is not used, otherwise its associated VALUE
 * in TABLE
 */
char * pair_get PARAMS ((struct pair_htable * table,
			 const char * key));

void pair_table_list_short PARAMS ((struct pair_htable * table,
				    FILE * stream));
void pair_table_list_long PARAMS ((struct pair_htable * table,
				   FILE * stream));
void pair_table_self_print PARAMS ((struct pair_htable * table,
				    FILE * stream));

/*
 * Map a function to the content of the table
 */
void pair_table_map PARAMS ((struct pair_htable * table,
			     pair_ht_map_fn_t map_fn,
			     pair_ht_select_fn_t select_fn,
			     void const * arg));

/*
 * Load entries from a map file
 */
int pair_table_load PARAMS ((struct pair_htable * table,
			     const char * file));
#endif