OSDN Git Service

PR fortran/29828
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / ctime.c
1 /* Implementation of the CTIME and FDATE g77 intrinsics.
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 #ifdef TIME_WITH_SYS_TIME
35 #  include <sys/time.h>
36 #  include <time.h>
37 #else
38 #  if HAVE_SYS_TIME_H
39 #    include <sys/time.h>
40 #  else
41 #    ifdef HAVE_TIME_H
42 #      include <time.h>
43 #    endif
44 #  endif
45 #endif
46
47 #include <string.h>
48
49
50 extern void fdate (char **, gfc_charlen_type *);
51 export_proto(fdate);
52
53 void
54 fdate (char ** date, gfc_charlen_type * date_len)
55 {
56 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
57   int i;
58   time_t now = time(NULL);
59   *date = ctime (&now);
60   if (*date != NULL)
61     {
62       *date = strdup (*date);
63       *date_len = strlen (*date);
64
65       i = 0;
66       while ((*date)[i])
67        {
68          if ((*date)[i] == '\n')
69            (*date)[i] = ' ';
70          i++;
71        }
72       return;
73     }
74 #endif
75
76   *date = NULL;
77   *date_len = 0;
78 }
79
80
81 extern void fdate_sub (char *, gfc_charlen_type);
82 export_proto(fdate_sub);
83
84 void
85 fdate_sub (char * date, gfc_charlen_type date_len)
86 {
87 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
88   int i;
89   char *d;
90   time_t now = time(NULL);
91 #endif
92   
93   memset (date, ' ', date_len);
94 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
95   d = ctime (&now);
96   if (d != NULL)
97     {
98       i = 0;
99       while (*d && *d != '\n' && i < date_len)
100        date[i++] = *(d++);
101     }
102 #endif
103 }
104
105
106
107 extern void PREFIX(ctime) (char **, gfc_charlen_type *, GFC_INTEGER_8);
108 export_proto_np(PREFIX(ctime));
109
110 void
111 PREFIX(ctime) (char ** date, gfc_charlen_type * date_len, GFC_INTEGER_8 t)
112 {
113 #if defined(HAVE_CTIME)
114   time_t now = t;
115   int i;
116   *date = ctime (&now);
117   if (*date != NULL)
118     {
119       *date = strdup (*date);
120       *date_len = strlen (*date);
121
122       i = 0;
123       while ((*date)[i])
124        {
125          if ((*date)[i] == '\n')
126            (*date)[i] = ' ';
127          i++;
128        }
129       return;
130     }
131 #endif
132
133   *date = NULL;
134   *date_len = 0;
135 }
136
137
138 extern void ctime_sub (GFC_INTEGER_8 *, char *, gfc_charlen_type);
139 export_proto(ctime_sub);
140
141 void
142 ctime_sub (GFC_INTEGER_8 * t, char * date, gfc_charlen_type date_len)
143 {
144 #if defined(HAVE_CTIME)
145   int i;
146   char *d;
147   time_t now = *t;
148 #endif
149   
150   memset (date, ' ', date_len);
151 #if defined(HAVE_CTIME)
152   d = ctime (&now);
153   if (d != NULL)
154     {
155       i = 0;
156       while (*d && *d != '\n' && i < date_len)
157        date[i++] = *(d++);
158     }
159 #endif
160 }