OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libgfortran/] [intrinsics/] [getcwd.c] - Blame information for rev 14

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 14 jlechner
/* Implementation of the GETCWD 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
extern void getcwd_i4_sub (char *, GFC_INTEGER_4 *, gfc_charlen_type);
44
iexport_proto(getcwd_i4_sub);
45
 
46
void
47
getcwd_i4_sub (char *cwd, GFC_INTEGER_4 *status, gfc_charlen_type cwd_len)
48
{
49
  char str[cwd_len + 1];
50
  GFC_INTEGER_4 stat;
51
 
52
  memset(cwd, ' ', (size_t) cwd_len);
53
 
54
  if (!getcwd (str, (size_t) cwd_len + 1))
55
    stat = errno;
56
  else
57
    {
58
      stat = 0;
59
      memcpy (cwd, str, strlen (str));
60
    }
61
  if (status != NULL)
62
    *status = stat;
63
}
64
iexport(getcwd_i4_sub);
65
 
66
extern void getcwd_i8_sub (char *, GFC_INTEGER_8 *, gfc_charlen_type);
67
export_proto(getcwd_i8_sub);
68
 
69
void
70
getcwd_i8_sub (char *cwd, GFC_INTEGER_8 *status, gfc_charlen_type cwd_len)
71
{
72
  GFC_INTEGER_4 status4;
73
  getcwd_i4_sub (cwd, &status4, cwd_len);
74
  if (status)
75
    *status = status4;
76
}
77
 
78
extern GFC_INTEGER_4 PREFIX(getcwd) (char *, gfc_charlen_type);
79
export_proto_np(PREFIX(getcwd));
80
 
81
GFC_INTEGER_4
82
PREFIX(getcwd) (char *cwd, gfc_charlen_type cwd_len)
83
{
84
  GFC_INTEGER_4 status;
85
  getcwd_i4_sub (cwd, &status, cwd_len);
86
  return status;
87
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.