Deleted Added
full compact
command.h (43888) command.h (47849)
1/*
2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
3 *
4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
5 *
6 * Redistribution and use in source and binary forms are permitted
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the Internet Initiative Japan. The name of the
12 * IIJ may not be used to endorse or promote products derived
13 * from this software without specific prior written permission.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 *
1/*
2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
3 *
4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
5 *
6 * Redistribution and use in source and binary forms are permitted
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the Internet Initiative Japan. The name of the
12 * IIJ may not be used to endorse or promote products derived
13 * from this software without specific prior written permission.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 * $Id: command.h,v 1.15 1998/06/15 19:06:06 brian Exp $
18 * $Id: command.h,v 1.16 1999/02/11 10:14:08 brian Exp $
19 *
20 * TODO:
21 */
22
23struct cmdtab;
24struct bundle;
25struct datalink;
26struct prompt;

--- 23 unchanged lines hidden (view full) ---

50#define NEG_ENABLED (2)
51#define IsAccepted(x) ((x) & NEG_ACCEPTED)
52#define IsEnabled(x) ((x) & NEG_ENABLED)
53
54extern const char Version[];
55extern const char VersionDate[];
56
57extern void command_Expand(char **, int, char const *const *, struct bundle *,
19 *
20 * TODO:
21 */
22
23struct cmdtab;
24struct bundle;
25struct datalink;
26struct prompt;

--- 23 unchanged lines hidden (view full) ---

50#define NEG_ENABLED (2)
51#define IsAccepted(x) ((x) & NEG_ACCEPTED)
52#define IsEnabled(x) ((x) & NEG_ENABLED)
53
54extern const char Version[];
55extern const char VersionDate[];
56
57extern void command_Expand(char **, int, char const *const *, struct bundle *,
58 int);
58 int, pid_t);
59extern int command_Interpret(char *, int, char *vector[MAXARGS]);
60extern void command_Run(struct bundle *, int, char const *const *,
61 struct prompt *, const char *, struct datalink *);
62extern void command_Decode(struct bundle *, char *, int, struct prompt *,
63 const char *);
64extern struct link *command_ChooseLink(struct cmdargs const *);
65extern const char *command_ShowNegval(unsigned);
59extern int command_Interpret(char *, int, char *vector[MAXARGS]);
60extern void command_Run(struct bundle *, int, char const *const *,
61 struct prompt *, const char *, struct datalink *);
62extern void command_Decode(struct bundle *, char *, int, struct prompt *,
63 const char *);
64extern struct link *command_ChooseLink(struct cmdargs const *);
65extern const char *command_ShowNegval(unsigned);