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