Deleted Added
full compact
command.h (6060) command.h (6735)
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,

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

19 *
20 * TODO:
21 */
22
23struct cmdtab {
24 char *name;
25 char *alias;
26 int (*func)();
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,

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

19 *
20 * TODO:
21 */
22
23struct cmdtab {
24 char *name;
25 char *alias;
26 int (*func)();
27 u_char lauth;
27 char *helpmes;
28 char *syntax;
29 void *args;
30};
28 char *helpmes;
29 char *syntax;
30 void *args;
31};