OSDN Git Service

* ifcvt.c (cond_exec_find_if_block): Return FALSE if no
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / symlnk.c
1 /* Implementation of the SYMLNK intrinsic.
2    Copyright (C) 2005 Free Software Foundation, Inc.
3    Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
4
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
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 2 of the License, or (at your option) any later version.
11
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file.  (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
19 executable.)
20
21 Libgfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 GNU General Public License for more details.
25
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING.  If not,
28 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA.  */
30
31 #include "config.h"
32 #include "libgfortran.h"
33
34 #include <errno.h>
35
36 #ifdef HAVE_STRING_H
37 #include <string.h>
38 #endif
39 #ifdef HAVE_UNISTD_H
40 #include <unistd.h>
41 #endif
42
43 /* SUBROUTINE SYMLNK(PATH1, PATH2, STATUS)
44    CHARACTER(len=*), INTENT(IN) :: PATH1, PATH2
45    INTEGER, INTENT(OUT), OPTIONAL :: STATUS  */
46
47 #ifdef HAVE_SYMLINK
48 extern void symlnk_i4_sub (char *, char *, GFC_INTEGER_4 *, gfc_charlen_type,
49                          gfc_charlen_type);
50 iexport_proto(symlnk_i4_sub);
51
52 void
53 symlnk_i4_sub (char *path1, char *path2, GFC_INTEGER_4 *status,
54              gfc_charlen_type path1_len, gfc_charlen_type path2_len)
55 {
56   int val;
57   char *str1, *str2;
58
59   /* Trim trailing spaces from paths.  */
60   while (path1_len > 0 && path1[path1_len - 1] == ' ')
61     path1_len--;
62   while (path2_len > 0 && path2[path2_len - 1] == ' ')
63     path2_len--;
64
65   /* Make a null terminated copy of the strings.  */
66   str1 = gfc_alloca (path1_len + 1);
67   memcpy (str1, path1, path1_len);
68   str1[path1_len] = '\0';
69
70   str2 = gfc_alloca (path2_len + 1);
71   memcpy (str2, path2, path2_len);
72   str2[path2_len] = '\0';
73
74   val = symlink (str1, str2);
75
76   if (status != NULL)
77     *status = (val == 0) ? 0 : errno;
78 }
79 iexport(symlnk_i4_sub);
80
81 extern void symlnk_i8_sub (char *, char *, GFC_INTEGER_8 *, gfc_charlen_type,
82                          gfc_charlen_type);
83 iexport_proto(symlnk_i8_sub);
84
85 void
86 symlnk_i8_sub (char *path1, char *path2, GFC_INTEGER_8 *status,
87              gfc_charlen_type path1_len, gfc_charlen_type path2_len)
88 {
89   int val;
90   char *str1, *str2;
91
92   /* Trim trailing spaces from paths.  */
93   while (path1_len > 0 && path1[path1_len - 1] == ' ')
94     path1_len--;
95   while (path2_len > 0 && path2[path2_len - 1] == ' ')
96     path2_len--;
97
98   /* Make a null terminated copy of the strings.  */
99   str1 = gfc_alloca (path1_len + 1);
100   memcpy (str1, path1, path1_len);
101   str1[path1_len] = '\0';
102
103   str2 = gfc_alloca (path2_len + 1);
104   memcpy (str2, path2, path2_len);
105   str2[path2_len] = '\0';
106
107   val = symlink (str1, str2);
108
109   if (status != NULL)
110     *status = (val == 0) ? 0 : errno;
111 }
112 iexport(symlnk_i8_sub);
113
114 extern GFC_INTEGER_4 symlnk_i4 (char *, char *, gfc_charlen_type,
115                               gfc_charlen_type);
116 export_proto(symlnk_i4);
117
118 GFC_INTEGER_4
119 symlnk_i4 (char *path1, char *path2, gfc_charlen_type path1_len,
120          gfc_charlen_type path2_len)
121 {
122   GFC_INTEGER_4 val;
123   symlnk_i4_sub (path1, path2, &val, path1_len, path2_len);
124   return val;
125 }
126
127 extern GFC_INTEGER_8 symlnk_i8 (char *, char *, gfc_charlen_type,
128                               gfc_charlen_type);
129 export_proto(symlnk_i8);
130
131 GFC_INTEGER_8
132 symlnk_i8 (char *path1, char *path2, gfc_charlen_type path1_len,
133          gfc_charlen_type path2_len)
134 {
135   GFC_INTEGER_8 val;
136   symlnk_i8_sub (path1, path2, &val, path1_len, path2_len);
137   return val;
138 }
139 #endif