check_GNU_style.sh: Don't do 80 char check line by line
[official-gcc.git] / libgfortran / intrinsics / link.c
blobf8ce3a840d00aaa4ac647f4ed74151f8e42515bb
1 /* Implementation of the LINK intrinsic.
2 Copyright (C) 2005-2015 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>
29 #include <stdlib.h>
30 #include <string.h>
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
36 /* SUBROUTINE LINK(PATH1, PATH2, STATUS)
37 CHARACTER(len=*), INTENT(IN) :: PATH1, PATH2
38 INTEGER, INTENT(OUT), OPTIONAL :: STATUS */
40 #ifdef HAVE_LINK
42 static int
43 link_internal (char *path1, char *path2, gfc_charlen_type path1_len,
44 gfc_charlen_type path2_len)
46 int val;
47 char *str1, *str2;
49 /* Make a null terminated copy of the strings. */
50 str1 = fc_strdup (path1, path1_len);
51 str2 = fc_strdup (path2, path2_len);
53 val = link (str1, str2);
55 free (str1);
56 free (str2);
58 return ((val == 0) ? 0 : errno);
62 extern void link_i4_sub (char *, char *, GFC_INTEGER_4 *, gfc_charlen_type,
63 gfc_charlen_type);
64 iexport_proto(link_i4_sub);
66 void
67 link_i4_sub (char *path1, char *path2, GFC_INTEGER_4 *status,
68 gfc_charlen_type path1_len, gfc_charlen_type path2_len)
70 int val = link_internal (path1, path2, path1_len, path2_len);
72 if (status != NULL)
73 *status = val;
75 iexport(link_i4_sub);
77 extern void link_i8_sub (char *, char *, GFC_INTEGER_8 *, gfc_charlen_type,
78 gfc_charlen_type);
79 iexport_proto(link_i8_sub);
81 void
82 link_i8_sub (char *path1, char *path2, GFC_INTEGER_8 *status,
83 gfc_charlen_type path1_len, gfc_charlen_type path2_len)
85 int val = link_internal (path1, path2, path1_len, path2_len);
87 if (status != NULL)
88 *status = val;
90 iexport(link_i8_sub);
92 extern GFC_INTEGER_4 link_i4 (char *, char *, gfc_charlen_type,
93 gfc_charlen_type);
94 export_proto(link_i4);
96 GFC_INTEGER_4
97 link_i4 (char *path1, char *path2, gfc_charlen_type path1_len,
98 gfc_charlen_type path2_len)
100 return link_internal (path1, path2, path1_len, path2_len);
103 extern GFC_INTEGER_8 link_i8 (char *, char *, gfc_charlen_type,
104 gfc_charlen_type);
105 export_proto(link_i8);
107 GFC_INTEGER_8
108 link_i8 (char *path1, char *path2, gfc_charlen_type path1_len,
109 gfc_charlen_type path2_len)
111 return link_internal (path1, path2, path1_len, path2_len);
113 #endif