-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestpath.c
More file actions
36 lines (27 loc) · 773 Bytes
/
Copy pathtestpath.c
File metadata and controls
36 lines (27 loc) · 773 Bytes
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
#include "common.h"
extern BuiltinCmd blt[MAX_BUILTIN_FUNC_NUM];
int testpath(int * retc, char ** retv, const int argc, const char ** argv) {
if(retc)
*retc = 0;
if(argc == 0)
return 1;
int cmdIdx = findBuiltinCmd(argv[0]);
if(cmdIdx < 0) {
printf("command: %s, non-builtin command\n", argv[0]);
return 0;
}
printf("command: %s, builtin command\n %s\n", argv[0], blt[cmdIdx].desc);
/** Add your man function here */
return 0;
}
int testpathAddBuiltin(){
BuiltinCmd x;
strcpy(x.name, "testpath");
strcpy(x.desc, "Test if the file path exists");
x.hasAction = false;
x.func = &testpath;
x.optNum = 0;
memset(x.opt, 0, sizeof(x.opt));
addBuiltinCmd(&x);
return 0;
}