summaryrefslogtreecommitdiff
path: root/src/shell.h
blob: 15b42788f0c00c474c3a287036d324979e44188a (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
#ifndef    __SHELL_H
#define    __SHELL_H


#ifdef __cplusplus
extern "C" {
#endif


extern int com_id( char *arg );
extern int com_ls( char *arg );
extern int com_more( char *arg );
extern int com_vi( char *arg );
extern int com_rename( char *arg );
extern int com_stat( char *arg );
extern int com_delete( char *arg );
extern int com_cd( char *arg );
extern int com_ping( char *arg );
extern int com_pwd( char *ignore );



#ifdef __cplusplus
}
#endif

#endif  /* __SHELL_H */