command.h (c39aa54ec8245817e058c8493f4cf7236bf24a96) command.h (2a30e2ac0b09cb67cd405a077241278929a8ca65)
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,

--- 41 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[];
55
56extern void command_Expand(char **, int, char const *const *, struct bundle *,
57 int, pid_t);
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,

--- 41 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[];
55
56extern void command_Expand(char **, int, char const *const *, struct bundle *,
57 int, pid_t);
58extern int command_Expand_Interpret(char *, int, char *vector[MAXARGS], int);
58extern int command_Interpret(char *, int, char *vector[MAXARGS]);
59extern void command_Run(struct bundle *, int, char const *const *,
60 struct prompt *, const char *, struct datalink *);
61extern int command_Decode(struct bundle *, char *, int, struct prompt *,
62 const char *);
63extern struct link *command_ChooseLink(struct cmdargs const *);
64extern 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 int 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);
66