xref: /illumos-gate/usr/src/cmd/sendmail/include/sm/cf.h (revision 7c478bd9)
1 /*
2  * Copyright (c) 2001 Sendmail, Inc. and its suppliers.
3  *      All rights reserved.
4  *
5  * By using this file, you agree to the terms and conditions set
6  * forth in the LICENSE file which can be found at the top level of
7  * the sendmail distribution.
8  *
9  *	$Id: cf.h,v 1.2 2001/03/08 03:23:07 ca Exp $
10  */
11 
12 #pragma ident	"%Z%%M%	%I%	%E% SMI"
13 
14 #ifndef SM_CF_H
15 # define SM_CF_H
16 
17 #include <sm/gen.h>
18 
19 typedef struct
20 {
21 	char *opt_name;
22 	char *opt_val;
23 } SM_CF_OPT_T;
24 
25 extern int
26 sm_cf_getopt __P((
27 	char *path,
28 	int optc,
29 	SM_CF_OPT_T *optv));
30 
31 #endif /* ! SM_CF_H */
32