Disable tests for strdup/strndup on __hpux__
[official-gcc.git] / gcc / ada / argv.c
blob17369a9f3f9d49b09112ff58b482666012e72073
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * A R G V *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2023, Free Software Foundation, Inc. *
10 * *
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 3, 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. *
17 * *
18 * As a special exception under Section 7 of GPL version 3, you are granted *
19 * additional permissions described in the GCC Runtime Library Exception, *
20 * version 3.1, as published by the Free Software Foundation. *
21 * *
22 * You should have received a copy of the GNU General Public License and *
23 * a copy of the GCC Runtime Library Exception along with this program; *
24 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
25 * <http://www.gnu.org/licenses/>. *
26 * *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
29 * *
30 ****************************************************************************/
32 /* Routines for accessing command line arguments from both the runtime
33 library and from the compiler itself. In the former case, gnat_argc
34 and gnat_argv are the original argc and argv values as stored by the
35 binder generated main program, and these routines are accessed from
36 the Ada.Command_Line package. In the compiler case, gnat_argc and
37 gnat_argv are the values as modified by toplev, and these routines
38 are accessed from the Osint package. */
40 /* Also routines for accessing the environment from the runtime library.
41 Gnat_envp is the original envp value as stored by the binder generated
42 main program, and these routines are accessed from the
43 Ada.Command_Line.Environment package. */
45 #ifdef IN_RTS
46 #include "runtime.h"
47 #include <stdlib.h>
48 #include <string.h>
49 #else
50 #include "config.h"
51 #include "system.h"
52 #endif
54 #ifndef LIGHT_RUNTIME
55 #include "adaint.h"
56 #endif
58 #ifdef __cplusplus
59 extern "C" {
60 #endif
62 /* argc and argv of the main program are saved under gnat_argc and gnat_argv,
63 envp of the main program is saved under gnat_envp. */
65 int gnat_argc = 0;
66 char **gnat_argv = NULL;
67 char **gnat_envp = NULL;
69 #if defined (_WIN32) && !defined (RTX)
70 /* Note that on Windows environment the environ point to a buffer that could
71 be reallocated if needed. It means that gnat_envp needs to be updated
72 before using gnat_envp to point to the right environment space */
73 /* for the environ variable definition */
74 #define gnat_envp (environ)
75 #endif
77 int
78 __gnat_arg_count (void)
80 return gnat_argc;
83 int
84 __gnat_len_arg (int arg_num)
86 if (gnat_argv != NULL)
87 return strlen (gnat_argv[arg_num]);
88 else
89 return 0;
92 void
93 __gnat_fill_arg (char *a, int i)
95 if (gnat_argv != NULL)
96 memcpy (a, gnat_argv[i], strlen (gnat_argv[i]));
99 int
100 __gnat_env_count (void)
102 int i;
104 for (i = 0; gnat_envp[i]; i++)
106 return i;
110 __gnat_len_env (int env_num)
112 if (gnat_envp != NULL)
113 return strlen (gnat_envp[env_num]);
114 else
115 return 0;
118 void
119 __gnat_fill_env (char *a, int i)
121 if (gnat_envp != NULL)
122 memcpy (a, gnat_envp[i], strlen (gnat_envp[i]));
125 #ifdef __cplusplus
127 #endif