blob: a983293bcd8ef82d76376d4792ef40364c1e52fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* mpiosh.h
*
* Author: Andreas Büsching <crunchy@tzi.de>
*
* $Id: mpiosh.h,v 1.5 2002/09/14 11:19:30 crunchy Exp $
*
* Copyright (C) 2002 Andreas Büsching <crunchy@tzi.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _MPIOSH_H_
#define _MPIOSH_H_
typedef void(*cmd_callback)(char *args[]);
typedef struct {
mpio_t * dev;
mpio_mem_t card;
const char * prompt;
} mpiosh_t;
typedef struct {
char * cmd;
char * args;
char * info;
cmd_callback func;
} mpiosh_cmd_t;
/* signal handler */
void mpiosh_signal_handler(int signal);
/* readline extensions */
void mpiosh_readline_init(void);
char **mpiosh_readline_completion(const char *text, int start, int end);
char *mpiosh_readline_comp_cmd(const char *text, int state);
int mpiosh_readline_cancel(void);
/* helper functions */
void mpiosh_init(void);
mpiosh_cmd_t *mpiosh_command_find(char *line);
char **mpiosh_command_split_line(char *line);
char **mpiosh_command_get_args(char *line);
void mpiosh_command_regex_fix(char *argv[]);
void mpiosh_command_free_args(char **args);
/* global structures */
extern mpiosh_t mpiosh;
extern mpiosh_cmd_t commands[];
extern int mpiosh_cancel;
extern const char *PROMPT_INT;
extern const char *PROMPT_EXT;
#endif // _MPIOSH_H_
/* end of mpiosh.h */
|