coreutils

General Software Utilities
git clone http://git.omkov.net/coreutils
Log | Tree | Refs | README | LICENCE | Download

coreutils/src/util/optget.h (37 lines, 582 B) -rw-r--r-- file download

cdfecb8 Jamozed 2022-03-06 15:11:25
0
// util/optget.h, version 1.6.2
b181413 Jamozed 2022-02-05 22:32:00
1
// optget header file from libutil
30cf081 Jamozed 2020-08-28 23:01:02
2
// Copyright (C) 2020, Jakob Wakeling
cdfecb8 Jamozed 2022-03-06 15:11:25
3
// MIT Licence
30cf081 Jamozed 2020-08-28 23:01:02
4
b181413 Jamozed 2022-02-05 22:32:00
5
#ifndef UTIL_OPTGET_H_W3LIZK1S
b181413 Jamozed 2022-02-05 22:32:00
6
#define UTIL_OPTGET_H_W3LIZK1S
cdfecb8 Jamozed 2022-03-06 15:11:25
7
cdfecb8 Jamozed 2022-03-06 15:11:25
8
#ifdef __cplusplus
cdfecb8 Jamozed 2022-03-06 15:11:25
9
extern "C" {
cdfecb8 Jamozed 2022-03-06 15:11:25
10
#endif
30cf081 Jamozed 2020-08-28 23:01:02
11
30cf081 Jamozed 2020-08-28 23:01:02
12
#define ARG_NUL 0
30cf081 Jamozed 2020-08-28 23:01:02
13
#define ARG_REQ 1
30cf081 Jamozed 2020-08-28 23:01:02
14
#define ARG_OPT 2
30cf081 Jamozed 2020-08-28 23:01:02
15
30cf081 Jamozed 2020-08-28 23:01:02
16
struct lop {
30cf081 Jamozed 2020-08-28 23:01:02
17
	char *str;
30cf081 Jamozed 2020-08-28 23:01:02
18
	int arg, val;
30cf081 Jamozed 2020-08-28 23:01:02
19
};
30cf081 Jamozed 2020-08-28 23:01:02
20
30cf081 Jamozed 2020-08-28 23:01:02
21
struct opt {
30cf081 Jamozed 2020-08-28 23:01:02
22
	int ind, opt, pos, nop;
30cf081 Jamozed 2020-08-28 23:01:02
23
	char *arg, *lop, *str;
30cf081 Jamozed 2020-08-28 23:01:02
24
	struct lop *lops;
30cf081 Jamozed 2020-08-28 23:01:02
25
};
30cf081 Jamozed 2020-08-28 23:01:02
26
30cf081 Jamozed 2020-08-28 23:01:02
27
extern const struct opt OPTGET_INIT;
30cf081 Jamozed 2020-08-28 23:01:02
28
30cf081 Jamozed 2020-08-28 23:01:02
29
extern int optget(struct opt *opt, char *av[], int flags);
cdfecb8 Jamozed 2022-03-06 15:11:25
30
cdfecb8 Jamozed 2022-03-06 15:11:25
31
#ifdef __cplusplus
cdfecb8 Jamozed 2022-03-06 15:11:25
32
} // extern "C"
cdfecb8 Jamozed 2022-03-06 15:11:25
33
#endif
30cf081 Jamozed 2020-08-28 23:01:02
34
b181413 Jamozed 2022-02-05 22:32:00
35
#endif // UTIL_OPTGET_H_W3LIZK1S
36