386BSD 0.1 development
[unix-history] / usr / othersrc / contrib / isode / h / cmd_srch.h
CommitLineData
2596a09e
WJ
1/* cmd_srch.h - command search structure */
2
3/*
4 * $Header: /f/osi/h/RCS/cmd_srch.h,v 7.1 91/02/22 09:24:36 mrose Interim $
5 *
6 *
7 * $Log: cmd_srch.h,v $
8 * Revision 7.1 91/02/22 09:24:36 mrose
9 * Interim 6.8
10 *
11 * Revision 7.0 89/11/23 21:55:40 mrose
12 * Release 6.0
13 *
14 */
15
16/*
17 * NOTICE
18 *
19 * Acquisition, use, and distribution of this module and related
20 * materials are subject to the restrictions of a license agreement.
21 * Consult the Preface in the User's Manual for the full terms of
22 * this agreement.
23 *
24 */
25
26
27#ifndef _CMD_SRCH_
28#define _CMD_SRCH_
29
30typedef struct cmd_table {
31 char *cmd_key;
32 int cmd_value;
33} CMD_TABLE;
34
35
36struct cm_args {
37 char *cm_key;
38 char *cm_value;
39};
40
41int cmd_srch ();
42char *rcmd_srch ();
43
44#endif