-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcmdinit.c
55 lines (52 loc) · 1.81 KB
/
cmdinit.c
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
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1992-2012 AT&T Intellectual Property *
* Copyright (c) 2020-2023 Contributors to ksh 93u+m *
* and is licensed under the *
* Eclipse Public License, Version 2.0 *
* *
* A copy of the License is available at *
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html *
* (with md5 checksum 84283fa8859daf213bdda5a9f8d1be1d) *
* *
* Glenn Fowler <[email protected]> *
* David Korn <[email protected]> *
* Martijn Dekker <[email protected]> *
* *
***********************************************************************/
/*
* command initialization
*/
#include <cmd.h>
#include <shcmd.h>
int
_cmd_init(int argc, char** argv, Shbltin_t* context, const char* catalog, int flags)
{
char* cp;
if (argc <= 0)
return -1;
if (context)
{
if (flags & ERROR_CALLBACK)
{
flags &= ~ERROR_CALLBACK;
flags |= ERROR_NOTIFY;
}
else if (flags & ERROR_NOTIFY)
{
context->notify = 1;
flags &= ~ERROR_NOTIFY;
}
error_info.flags |= flags;
}
if (cp = strrchr(argv[0], '/'))
cp++;
else
cp = argv[0];
error_info.id = cp;
if (!error_info.catalog)
error_info.catalog = catalog;
opt_info.index = 0;
return 0;
}