-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathgmtwhich_inc.h
37 lines (34 loc) · 1.6 KB
/
gmtwhich_inc.h
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
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or 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 Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
#ifndef GMTWHICH_INC_H
#define GMTWHICH_INC_H
/* Translation table from long to short module options, directives and modifiers */
static struct GMT_KEYWORD_DICTIONARY module_kw[] = {
/* separator, short_option, long_option,
short_directives, long_directives,
short_modifiers, long_modifiers,
transproc_mask */
{ 0, 'A', "readable", "", "", "", "", GMT_TP_STANDARD },
{ 0, 'C', "confirm", "", "", "", "", GMT_TP_STANDARD },
{ 0, 'D', "directories|report_dir", "", "", "", "", GMT_TP_STANDARD },
{ 0, 'G', "download",
"a,c,l,u", "auto,cache,local,user",
"", "",
GMT_TP_STANDARD },
{ 0, '\0', "", "", "", "", "", 0 } /* End of list marked with empty option and strings */
};
#endif /* !GMTWHICH_INC_H */