MED fichier
med_vargs.h
Aller à la documentation de ce fichier.
1/* -*- mode:C; coding:utf-8 -*- */
2/* This file is part of MED.
3 *
4 * COPYRIGHT (C) 1999 - 2020 EDF R&D, CEA/DEN
5 * MED is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * MED 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
13 * GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with MED. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef MED_VARGS
20#define MED_VARGS
21
22#include "med_config.h"
23
24#ifdef PPRO_NT
25
26#define MED_VARGS_DECL(cst1,type,cst2,varname) type varname
27#define MED_VARGS_DEF(cst1,type,cst2,varname) varname = va_arg(params, cst1 type cst2)
28
29#elif HAVE_CC_C99 || defined(__STDC__)
30
31#define MED_VARGS_DECL(cst1,type,cst2,varname)
32#define MED_VARGS_DEF(cst1,type,cst2,varname) cst1 type cst2 varname = va_arg(params, cst1 type cst2)
33
34#endif
35
36#endif
37