Yet Another eXchange Tool 0.11.1
Loading...
Searching...
No Matches
symprefix.h
Go to the documentation of this file.
1
10/*
11 * Keywords:
12 * Maintainer: Thomas Jahns <jahns@dkrz.de>
13 * URL: https://swprojects.dkrz.de/redmine/projects/scales-ppm
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions are
17 * met:
18 *
19 * Redistributions of source code must retain the above copyright notice,
20 * this list of conditions and the following disclaimer.
21 *
22 * Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * Neither the name of the DKRZ GmbH nor the names of its contributors
27 * may be used to endorse or promote products derived from this software
28 * without specific prior written permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
31 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
32 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
33 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
34 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
35 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
36 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
37 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
38 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
39 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
40 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 */
42
43#ifndef SYMPREFIX_H
44#define SYMPREFIX_H
45
46#ifdef HAVE_CONFIG_H
47#include <config.h>
48#endif
49
50/* All upper case fortran names */
51#define SYMPREFIX(symbol) XT_##symbol
52/* Mixed case C names */
53#define SymPrefix(symbol) Xt_##symbol
54/* All lower case fortran names */
55#define symprefix(symbol) xt_##symbol
56
57#endif
58/*
59 * Local Variables:
60 * license-project-url: "https://swprojects.dkrz.de/redmine/projects/scales-ppm"
61 * license-default: "bsd"
62 * license-markup: "doxygen"
63 * End:
64 */