1 /* Copyright (C) 2002-2018 Free Software Foundation, Inc.
2 Contributed by Paul Brook
4 This file is part of the GNU Fortran runtime library (libgfortran).
6 Libgfortran 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)
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #include "libgfortran.h"
30 /* Given a fortran string, return its length exclusive of the trailing
34 fstrlen (const char *string
, gfc_charlen_type len
)
36 for (; len
> 0; len
--)
37 if (string
[len
-1] != ' ')
44 /* Copy a Fortran string (not null-terminated, hence length arguments
45 for both source and destination strings. Returns the non-padded
46 length of the destination. */
49 fstrcpy (char *dest
, gfc_charlen_type destlen
,
50 const char *src
, gfc_charlen_type srclen
)
52 if (srclen
>= destlen
)
54 /* This will truncate if too long. */
55 memcpy (dest
, src
, destlen
);
60 memcpy (dest
, src
, srclen
);
61 /* Pad with spaces. */
62 memset (&dest
[srclen
], ' ', destlen
- srclen
);
68 /* Copy a null-terminated C string to a non-null-terminated Fortran
69 string. Returns the non-padded length of the destination string. */
72 cf_strcpy (char *dest
, gfc_charlen_type dest_len
, const char *src
)
76 src_len
= strlen (src
);
78 if (src_len
>= (size_t) dest_len
)
80 /* This will truncate if too long. */
81 memcpy (dest
, src
, dest_len
);
86 memcpy (dest
, src
, src_len
);
87 /* Pad with spaces. */
88 memset (&dest
[src_len
], ' ', dest_len
- src_len
);
96 strnlen (const char *s
, size_t maxlen
)
98 for (size_t ii
= 0; ii
< maxlen
; ii
++)
110 strndup (const char *s
, size_t n
)
112 size_t len
= strnlen (s
, n
);
113 char *p
= malloc (len
+ 1);
123 /* Duplicate a non-null-terminated Fortran string to a malloced
124 null-terminated C string. */
127 fc_strdup (const char *src
, gfc_charlen_type src_len
)
129 gfc_charlen_type n
= fstrlen (src
, src_len
);
130 char *p
= strndup (src
, n
);
132 os_error ("Memory allocation failed in fc_strdup");
137 /* Duplicate a non-null-terminated Fortran string to a malloced
138 null-terminated C string, without getting rid of trailing
142 fc_strdup_notrim (const char *src
, gfc_charlen_type src_len
)
144 char *p
= strndup (src
, src_len
);
146 os_error ("Memory allocation failed in fc_strdup");
151 /* Given a fortran string and an array of st_option structures, search through
152 the array to find a match. If the option is not found, we generate an error
153 if no default is provided. */
156 find_option (st_parameter_common
*cmp
, const char *s1
, gfc_charlen_type s1_len
,
157 const st_option
* opts
, const char *error_message
)
159 /* Strip trailing blanks from the Fortran string. */
160 size_t len
= (size_t) fstrlen (s1
, s1_len
);
162 for (; opts
->name
; opts
++)
163 if (len
== strlen(opts
->name
) && strncasecmp (s1
, opts
->name
, len
) == 0)
166 generate_error (cmp
, LIBERROR_BAD_OPTION
, error_message
);
172 /* gfc_itoa()-- Integer to decimal conversion.
173 The itoa function is a widespread non-standard extension to
174 standard C, often declared in <stdlib.h>. Even though the itoa
175 defined here is a static function we take care not to conflict with
176 any prior non-static declaration. Hence the 'gfc_' prefix, which
177 is normally reserved for functions with external linkage. Notably,
178 in contrast to the *printf() family of functions, this ought to be
179 async-signal-safe. */
182 gfc_itoa (GFC_INTEGER_LARGEST n
, char *buffer
, size_t len
)
186 GFC_UINTEGER_LARGEST t
;
188 if (len
< GFC_ITOA_BUF_SIZE
)
199 t
= -n
; /*must use unsigned to protect from overflow*/
202 p
= buffer
+ GFC_ITOA_BUF_SIZE
- 1;
207 *--p
= '0' + (t
% 10);