OSDN Git Service

e0826808ec29968d2b74fb5421ab017c2c5e0558
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / getcwd.c
1 /* Implementation of the GETCWD intrinsic.
2    Copyright (C) 2004, 2005, 2007 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 "libgfortran.h"
32
33 #include <string.h>
34 #include <errno.h>
35
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39
40 extern void getcwd_i4_sub (char *, GFC_INTEGER_4 *, gfc_charlen_type);
41 iexport_proto(getcwd_i4_sub);
42
43 void
44 getcwd_i4_sub (char *cwd, GFC_INTEGER_4 *status, gfc_charlen_type cwd_len)
45 {
46   char str[cwd_len + 1];
47   GFC_INTEGER_4 stat;
48
49   memset(cwd, ' ', (size_t) cwd_len);
50
51   if (!getcwd (str, (size_t) cwd_len + 1))
52     stat = errno;
53   else
54     {
55       stat = 0;
56       memcpy (cwd, str, strlen (str));
57     }
58   if (status != NULL)
59     *status = stat;
60 }
61 iexport(getcwd_i4_sub);
62
63 extern void getcwd_i8_sub (char *, GFC_INTEGER_8 *, gfc_charlen_type);
64 export_proto(getcwd_i8_sub);
65
66 void
67 getcwd_i8_sub (char *cwd, GFC_INTEGER_8 *status, gfc_charlen_type cwd_len)
68 {
69   GFC_INTEGER_4 status4;
70   getcwd_i4_sub (cwd, &status4, cwd_len);
71   if (status)
72     *status = status4;
73 }
74
75 extern GFC_INTEGER_4 PREFIX(getcwd) (char *, gfc_charlen_type);
76 export_proto_np(PREFIX(getcwd));
77
78 GFC_INTEGER_4
79 PREFIX(getcwd) (char *cwd, gfc_charlen_type cwd_len)
80 {
81   GFC_INTEGER_4 status;
82   getcwd_i4_sub (cwd, &status, cwd_len);
83   return status;
84 }