1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 1992-2007, Free Software Foundation, Inc. *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 2, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
17 * for more details. You should have received a copy of the GNU General *
18 * Public License distributed with GNAT; see file COPYING. If not, write *
19 * to the Free Software Foundation, 51 Franklin Street, Fifth Floor, *
20 * Boston, MA 02110-1301, USA. *
22 * As a special exception, if you link this file with other files to *
23 * produce an executable, this file does not by itself cause the resulting *
24 * executable to be covered by the GNU General Public License. This except- *
25 * ion does not however invalidate any other reasons why the executable *
26 * file might be covered by the GNU Public License. *
28 * GNAT was originally developed by the GNAT team at New York University. *
29 * Extensive contributions were provided by Ada Core Technologies Inc. *
31 ****************************************************************************/
33 /* Routines for accessing command line arguments from both the runtime
34 library and from the compiler itself. In the former case, gnat_argc
35 and gnat_argv are the original argc and argv values as stored by the
36 binder generated main program, and these routines are accessed from
37 the Ada.Command_Line package. In the compiler case, gnat_argc and
38 gnat_argv are the values as modified by toplev, and these routines
39 are accessed from the Osint package. */
41 /* Also routines for accessing the environment from the runtime library.
42 Gnat_envp is the original envp value as stored by the binder generated
43 main program, and these routines are accessed from the
44 Ada.Command_Line.Environment package. */
57 /* argc and argv of the main program are saved under gnat_argc and gnat_argv,
58 envp of the main program is saved under gnat_envp. */
61 const char **gnat_argv
= (const char **) 0;
62 const char **gnat_envp
= (const char **) 0;
65 /* Note that on Windows environment the environ point to a buffer that could
66 be reallocated if needed. It means that gnat_envp needs to be updated
67 before using gnat_envp to point to the right environment space */
69 /* for the environ variable definition */
70 #define gnat_envp (environ)
74 __gnat_arg_count (void)
80 __gnat_len_arg (int arg_num
)
82 if (gnat_argv
!= NULL
)
83 return strlen (gnat_argv
[arg_num
]);
89 __gnat_fill_arg (char *a
, int i
)
91 if (gnat_argv
!= NULL
)
92 strncpy (a
, gnat_argv
[i
], strlen(gnat_argv
[i
]));
96 __gnat_env_count (void)
100 for (i
= 0; gnat_envp
[i
]; i
++)
106 __gnat_len_env (int env_num
)
108 if (gnat_envp
!= NULL
)
109 return strlen (gnat_envp
[env_num
]);
115 __gnat_fill_env (char *a
, int i
)
117 if (gnat_envp
!= NULL
)
118 strncpy (a
, gnat_envp
[i
], strlen (gnat_envp
[i
]));