blob: 04ee6dc933e69d0368b9a7ddbece733561ec7d32 (
plain)
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
|
#ifndef _MAPS_H_INCLUDED_
#define _MAPS_H_INCLUDED_
/*++
/* NAME
/* maps 3h
/* SUMMARY
/* multi-dictionary search
/* SYNOPSIS
/* #include <maps.h>
/* DESCRIPTION
/* .nf
/*
* Utility library.
*/
#include <dict.h>
/*
* Dictionary name storage. We're borrowing from the argv(3) module.
*/
typedef struct MAPS {
char *title;
struct ARGV *argv;
int error; /* last request only */
} MAPS;
extern MAPS *maps_create(const char *, const char *, int);
extern const char *maps_find(MAPS *, const char *, int);
extern const char *maps_file_find(MAPS *, const char *, int);
extern MAPS *maps_free(MAPS *);
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
#endif
|