2999
|
1 /* variable.h: Declare variable expander. |
|
2 |
|
3 Copyright (C) 1993, 95 Karl Berry. |
|
4 |
|
5 This library is free software; you can redistribute it and/or |
|
6 modify it under the terms of the GNU Library General Public |
|
7 License as published by the Free Software Foundation; either |
|
8 version 2 of the License, or (at your option) any later version. |
|
9 |
|
10 This library is distributed in the hope that it will be useful, |
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 Library General Public License for more details. |
|
14 |
|
15 You should have received a copy of the GNU Library General Public |
|
16 License along with this library; if not, write to the Free Software |
|
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
|
18 |
|
19 #ifndef KPATHSEA_VARIABLE_H |
|
20 #define KPATHSEA_VARIABLE_H |
|
21 |
|
22 #include <kpathsea/c-proto.h> |
|
23 #include <kpathsea/types.h> |
|
24 |
|
25 |
|
26 /* Return the (variable-expanded) environment variable value or config |
|
27 file value, or NULL. */ |
|
28 extern string kpse_var_value P1H(const_string var); |
|
29 |
|
30 /* Expand $VAR and ${VAR} references in SRC, returning the (always newly |
|
31 dynamically-allocated) result. An unterminated ${ or any other |
|
32 character following $ produce error messages, and that part of SRC is |
|
33 ignored. In the $VAR form, the variable name consists of consecutive |
|
34 letters, digits, and underscores. In the ${VAR} form, the variable |
|
35 name consists of whatever is between the braces. |
|
36 |
|
37 In any case, ``expansion'' means calling `getenv'; if the variable is not |
|
38 set, look in texmf.cnf files for a definition. If not set there, either, |
|
39 the expansion is the empty string (no error). */ |
|
40 extern string kpse_var_expand P1H(const_string src); |
|
41 |
|
42 #endif /* not KPATHSEA_VARIABLE_H */ |