cf.h revision 261363
1/*
2 * Copyright (c) 2001 Proofpoint, 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.3 2013/11/22 20:51:31 ca Exp $
10 */
11
12#ifndef SM_CF_H
13# define SM_CF_H
14
15#include <sm/gen.h>
16
17typedef struct
18{
19	char *opt_name;
20	char *opt_val;
21} SM_CF_OPT_T;
22
23extern int
24sm_cf_getopt __P((
25	char *path,
26	int optc,
27	SM_CF_OPT_T *optv));
28
29#endif /* ! SM_CF_H */
30