1AUTH2ELEM(3) AUT STRUCTURE DEFINITIONS AUTH2ELEM(3)
2
3
4
6 auth2elem - element in an hash table with two keys.
7
9 The auth2elem structure is used to describe an hash element.
10
11 The declarations needed to work on auth2elem are available in the
12 header file "/labo/include/aut101.h", where '101' is the actual aut
13 version.
14
15 The following C structure supports the description of an hash element :
16 typedef struct auth2elem
17 {
18 char ∗KEY1;
19 char ∗KEY2;
20 long VALUE;
21 } auth2elem;
22
23 KEY1
24 KEY1 is the first hash element key, for example a
25 name created with namealloc.
26
27 KEY2
28 KEY2 is the second hash element key, for example a
29 name created with namealloc.
30
31 VALUE
32 VALUE is the value associated to the two keys KEY1
33 and KEY2.
34
36 aut(1), auth2table(3),
37
38
39
40
41
42
43ASIM/LIP6 October 1, 1997 AUTH2ELEM(3)