1#ifndef LOAD_FILE_H_INCLUDED_
2#define LOAD_FILE_H_INCLUDED_
3
4/*++
5/* NAME
6/*	load_file 3h
7/* SUMMARY
8/*	load file with some prejudice
9/* SYNOPSIS
10/*	#include <load_file.h>
11/* DESCRIPTION
12/* .nf
13
14 /*
15  * External interface.
16  */
17typedef void (*LOAD_FILE_FN)(VSTREAM *, void *);
18
19extern void load_file(const char *, LOAD_FILE_FN, void *);
20
21/* LICENSE
22/* .ad
23/* .fi
24/*	The Secure Mailer license must be distributed with this software.
25/* AUTHOR(S)
26/*	Wietse Venema
27/*	IBM T.J. Watson Research
28/*	P.O. Box 704
29/*	Yorktown Heights, NY 10598, USA
30/*--*/
31
32#endif
33