]> Creatis software - clitk.git/blob - utilities/gengetopt/argsdef.c
Sync gengetopt cmake files with rtk
[clitk.git] / utilities / gengetopt / argsdef.c
1 /**
2  * Copyright (C) 1999-2007  Free Software Foundation, Inc.
3  *
4  * This file is part of GNU gengetopt 
5  *
6  * GNU gengetopt is free software; you can redistribute it and/or modify 
7  * it under the terms of the GNU General Public License as published by 
8  * the Free Software Foundation; either version 3, or (at your option) 
9  * any later version. 
10  *
11  * GNU gengetopt is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty of 
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14  * Public License for more details. 
15  *
16  * You should have received a copy of the GNU General Public License along 
17  * with gengetopt; see the file COPYING. If not, write to the Free Software 
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
19  */
20
21 #include "argsdef.h"
22
23 const char * arg_names [] = { (const char*)0, (const char*)0, "STRING", "INT",
24         "SHORT", "LONG", "FLOAT", "DOUBLE", "LONGDOUBLE", "LONGLONG", "ENUM" };
25
26 const char * arg_type_constants [] = { "ARG_NO", "ARG_FLAG", "ARG_STRING",
27         "ARG_INT", "ARG_SHORT", "ARG_LONG", "ARG_FLOAT", "ARG_DOUBLE",
28         "ARG_LONGDOUBLE", "ARG_LONGLONG", "ARG_ENUM" };
29
30 const char * arg_types [] = { (const char*)0, "int", "char *", "int", "short",
31         "long", "float", "double", "long double", "long long int", "enum" };
32
33 const char * arg_types_names [] = { (const char*)0, "int", "string", "int",
34         "short", "long", "float", "double", "longdouble", "longlong", "int" };
35