OSDN Git Service

* config/m68k/m68k.c (notice_update_cc): Use SET_DEST and
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / unlink.c
1 /* Implementation of the UNLINK intrinsic.
2    Copyright (C) 2004, 2005 Free Software Foundation, Inc.
3    Contributed by Steven G. Kargl <kargls@comcast.net>.
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 #ifdef HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
37 #ifdef HAVE_STRING_H
38 #include <string.h>
39 #endif
40
41 #include <errno.h>
42
43 /* SUBROUTINE UNLINK(NAME, STATUS)
44    CHARACTER(LEN= ), INTENT(IN) :: NAME
45    INTEGER, INTENT(OUT), OPTIONAL :: STATUS)  */
46
47 extern void unlink_i4_sub (char *name, GFC_INTEGER_4 *status,
48                            gfc_charlen_type name_len);
49 iexport_proto(unlink_i4_sub);
50
51 void
52 unlink_i4_sub (char *name, GFC_INTEGER_4 *status, gfc_charlen_type name_len)
53 {
54   char *str;
55   GFC_INTEGER_4 stat;
56
57   /* Trim trailing spaces from name.  */
58   while (name_len > 0 && name[name_len - 1] == ' ')
59     name_len--;
60
61   /* Make a null terminated copy of the string.  */
62   str = gfc_alloca (name_len + 1);
63   memcpy (str, name, name_len);
64   str[name_len] = '\0';
65
66   stat = unlink (str);
67
68   if (status != NULL)
69     *status = (stat == 0) ? stat : errno;
70 }
71 iexport(unlink_i4_sub);
72
73 extern void unlink_i8_sub (char *name, GFC_INTEGER_8 *status,
74                            gfc_charlen_type name_len);
75 export_proto(unlink_i8_sub);
76
77 void
78 unlink_i8_sub (char *name, GFC_INTEGER_8 *status, gfc_charlen_type name_len)
79 {
80   GFC_INTEGER_4 status4;
81   unlink_i4_sub (name, &status4, name_len);
82   if (status)
83     *status = status4;
84 }
85
86
87 /* INTEGER FUNCTION UNLINK(NAME)
88    CHARACTER(LEN= ), INTENT(IN) :: NAME  */
89
90 extern GFC_INTEGER_4 PREFIX(unlink) (char *, gfc_charlen_type);
91 export_proto_np(PREFIX(unlink));
92
93 GFC_INTEGER_4
94 PREFIX(unlink) (char *name, gfc_charlen_type name_len)
95 {
96   GFC_INTEGER_4 status;
97   unlink_i4_sub (name, &status, name_len);
98   return status;
99 }