1 /*        $NetBSD: dsn_print.h,v 1.2 2022/10/08 16:12:45 christos Exp $         */
2 
3 #ifndef _DSN_PRINT_H_INCLUDED_
4 #define _DSN_PRINT_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*        dsn_print 3h
9 /* SUMMARY
10 /*        write DSN structure to stream
11 /* SYNOPSIS
12 /*        #include <dsn_print.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * Utility library.
18   */
19 #include <vstream.h>
20 #include <attr.h>
21 
22  /*
23   * Global library.
24   */
25 #include <dsn.h>
26 
27  /*
28   * External interface.
29   */
30 extern int dsn_print(ATTR_PRINT_COMMON_FN, VSTREAM *, int, const void *);
31 
32 /* LICENSE
33 /* .ad
34 /* .fi
35 /*        The Secure Mailer license must be distributed with this software.
36 /* AUTHOR(S)
37 /*        Wietse Venema
38 /*        IBM T.J. Watson Research
39 /*        P.O. Box 704
40 /*        Yorktown Heights, NY 10598, USA
41 /*
42 /*        Wietse Venema
43 /*        Google, Inc.
44 /*        111 8th Avenue
45 /*        New York, NY 10011, USA
46 /*--*/
47 
48 #endif
49