Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / libgfortran / intrinsics / ctime.c
blob98bf29d7d213607a35400755f808691f06079ba9
1 /* Implementation of the CTIME and FDATE g77 intrinsics.
2 Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc.
3 Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
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 3 of the License, or (at your option) any later version.
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
28 #ifdef TIME_WITH_SYS_TIME
29 # include <sys/time.h>
30 # include <time.h>
31 #else
32 # if HAVE_SYS_TIME_H
33 # include <sys/time.h>
34 # else
35 # ifdef HAVE_TIME_H
36 # include <time.h>
37 # endif
38 # endif
39 #endif
41 #include <string.h>
44 extern void fdate (char **, gfc_charlen_type *);
45 export_proto(fdate);
47 void
48 fdate (char ** date, gfc_charlen_type * date_len)
50 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
51 int i;
52 time_t now = time(NULL);
53 *date = ctime (&now);
54 if (*date != NULL)
56 *date = strdup (*date);
57 *date_len = strlen (*date);
59 i = 0;
60 while ((*date)[i])
62 if ((*date)[i] == '\n')
63 (*date)[i] = ' ';
64 i++;
66 return;
68 #endif
70 *date = NULL;
71 *date_len = 0;
75 extern void fdate_sub (char *, gfc_charlen_type);
76 export_proto(fdate_sub);
78 void
79 fdate_sub (char * date, gfc_charlen_type date_len)
81 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
82 int i;
83 char *d;
84 time_t now = time(NULL);
85 #endif
87 memset (date, ' ', date_len);
88 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
89 d = ctime (&now);
90 if (d != NULL)
92 i = 0;
93 while (*d && *d != '\n' && i < date_len)
94 date[i++] = *(d++);
96 #endif
101 extern void PREFIX(ctime) (char **, gfc_charlen_type *, GFC_INTEGER_8);
102 export_proto_np(PREFIX(ctime));
104 void
105 PREFIX(ctime) (char ** date, gfc_charlen_type * date_len, GFC_INTEGER_8 t)
107 #if defined(HAVE_CTIME)
108 time_t now = t;
109 int i;
110 *date = ctime (&now);
111 if (*date != NULL)
113 *date = strdup (*date);
114 *date_len = strlen (*date);
116 i = 0;
117 while ((*date)[i])
119 if ((*date)[i] == '\n')
120 (*date)[i] = ' ';
121 i++;
123 return;
125 #endif
127 *date = NULL;
128 *date_len = 0;
132 extern void ctime_sub (GFC_INTEGER_8 *, char *, gfc_charlen_type);
133 export_proto(ctime_sub);
135 void
136 ctime_sub (GFC_INTEGER_8 * t, char * date, gfc_charlen_type date_len)
138 #if defined(HAVE_CTIME)
139 int i;
140 char *d;
141 time_t now = *t;
142 #endif
144 memset (date, ' ', date_len);
145 #if defined(HAVE_CTIME)
146 d = ctime (&now);
147 if (d != NULL)
149 i = 0;
150 while (*d && *d != '\n' && i < date_len)
151 date[i++] = *(d++);
153 #endif