2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / libgfortran / intrinsics / rename.c
blob8accf656bdc157bf0a78982935187f1c3ac3d397
1 /* Implementation of the RENAME intrinsic.
2 Copyright (C) 2005-2018 Free Software Foundation, Inc.
3 Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
5 This file is part of the GNU Fortran runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 3 of the License, or (at your option) any later version.
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
28 #include <errno.h>
31 static int
32 rename_internal (char *path1, char *path2, gfc_charlen_type path1_len,
33 gfc_charlen_type path2_len)
35 char *str1 = fc_strdup (path1, path1_len);
36 char *str2 = fc_strdup (path2, path2_len);
37 int val = rename (str1, str2);
38 free (str1);
39 free (str2);
40 return ((val == 0) ? 0 : errno);
44 /* SUBROUTINE RENAME(PATH1, PATH2, STATUS)
45 CHARACTER(len=*), INTENT(IN) :: PATH1, PATH2
46 INTEGER, INTENT(OUT), OPTIONAL :: STATUS */
48 extern void rename_i4_sub (char *, char *, GFC_INTEGER_4 *, gfc_charlen_type,
49 gfc_charlen_type);
50 iexport_proto(rename_i4_sub);
52 void
53 rename_i4_sub (char *path1, char *path2, GFC_INTEGER_4 *status,
54 gfc_charlen_type path1_len, gfc_charlen_type path2_len)
56 int val = rename_internal (path1, path2, path1_len, path2_len);
57 if (status != NULL)
58 *status = val;
60 iexport(rename_i4_sub);
62 extern void rename_i8_sub (char *, char *, GFC_INTEGER_8 *, gfc_charlen_type,
63 gfc_charlen_type);
64 iexport_proto(rename_i8_sub);
66 void
67 rename_i8_sub (char *path1, char *path2, GFC_INTEGER_8 *status,
68 gfc_charlen_type path1_len, gfc_charlen_type path2_len)
70 int val = rename_internal (path1, path2, path1_len, path2_len);
71 if (status != NULL)
72 *status = val;
74 iexport(rename_i8_sub);
76 extern GFC_INTEGER_4 rename_i4 (char *, char *, gfc_charlen_type,
77 gfc_charlen_type);
78 export_proto(rename_i4);
80 GFC_INTEGER_4
81 rename_i4 (char *path1, char *path2, gfc_charlen_type path1_len,
82 gfc_charlen_type path2_len)
84 return rename_internal (path1, path2, path1_len, path2_len);
87 extern GFC_INTEGER_8 rename_i8 (char *, char *, gfc_charlen_type,
88 gfc_charlen_type);
89 export_proto(rename_i8);
91 GFC_INTEGER_8
92 rename_i8 (char *path1, char *path2, gfc_charlen_type path1_len,
93 gfc_charlen_type path2_len)
95 return rename_internal (path1, path2, path1_len, path2_len);