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
56
57
58
59
60
61
62
63
64
|
/*
* ChkTeX v1.5, resource file reader.
* Copyright (C) 1995-96 Jens T. Berger Thielemann
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Contact the author at:
* Jens Berger
* Spektrumvn. 4
* N-0666 Oslo
* Norway
* E-mail: <jensthi@ifi.uio.no>
*
*
*/
#ifndef RESOURCE_H
#define RESOURCE_H
#ifndef CHKTEX_H
# include "ChkTeX.h"
#endif /* CHKTEX_H */
#define QUOTE '\"' /* Char used to quote text containing blanks */
#define ESCAPE '!' /* Char used to access special characters */
#define CMNT '#' /* Char used as comment */
#define RESOURCE_INFO \
LIST(Silent) LIST(Linker) LIST(IJAccent) LIST(Italic)\
LIST(ItalCmd) LIST(PostLink) LIST(WipeArg) LIST(VerbEnvir)\
LIST(MathEnvir) LIST(MathRoman) LIST(HyphDash) LIST(NumDash)\
LIST(WordDash) LIST(CenterDots) LIST(LowDots) LIST(OutFormat)\
LIST(Primitives) LIST(NotPreSpaced) LIST(NonItalic) LIST(NoCharNext)\
LNEMPTY(CmdLine) LNEMPTY(TeXInputs)\
LCASE(Abbrev) LCASE(UserWarn)\
KEY(VerbClear, "|") KEY(QuoteStyle, "Traditional") KEY(TabSize, "8")
#define LIST(a) extern struct WordList a;
#define LNEMPTY LIST
#define LCASE(a) LIST(a) LIST(a ## Case)
#define KEY(a,def) extern STRPTR a;
RESOURCE_INFO
#undef KEY
#undef LCASE
#undef LNEMPTY
#undef LIST
BOOL ReadRC __PROTO((STRPTR const));
#endif /* RESOURCE */
|