* gjavah.c (print_field_info): Changed how most negative number is
[official-gcc.git] / libchill / inttime.c
blob4b469a14270948c19a521da8eb6422c8e05897df
1 /* Implement timing-related runtime actions for CHILL.
2 Copyright (C) 1992,1993 Free Software Foundation, Inc.
3 Author: Wilfried Moser
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC 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 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* As a special exception, if you link this library with other files,
22 some of which are compiled with GCC, to produce an executable,
23 this library does not by itself cause the resulting executable
24 to be covered by the GNU General Public License.
25 This exception does not however invalidate any other reasons why
26 the executable file might be covered by the GNU General Public License. */
28 #include <time.h>
30 typedef struct
32 void *p;
33 unsigned long len;
34 } Descr;
36 typedef Descr **Toutlist;
38 #define ASSIGN_VALUE(OUT,VAL) \
39 do \
40 { \
41 if (OUT) \
42 switch (OUT->len) \
43 { \
44 case 1: \
45 *(char *)((OUT)->p) = VAL; \
46 break; \
47 case 2: \
48 *(short *)((OUT)->p) = VAL; \
49 break; \
50 case 4: \
51 *(int *)((OUT)->p) = VAL; \
52 break; \
53 } \
54 } while (0)
58 * function _inttime
60 * parameters:
61 * t time_t
62 * list the pointers to the results
64 * returns:
65 * void
67 * exceptions:
68 * none
70 * abstract:
71 * perform the INTTIME builtin call
75 void
76 _inttime (timer, outlist)
77 time_t timer;
78 Toutlist outlist;
80 struct tm *time_str;
82 /* get struct tm from time_t */
83 time_str = localtime (&timer);
85 /* assign the values */
86 ASSIGN_VALUE (outlist[0], time_str->tm_year + 1900);
87 ASSIGN_VALUE (outlist[1], time_str->tm_mon + 1);
88 ASSIGN_VALUE (outlist[2], time_str->tm_mday);
89 ASSIGN_VALUE (outlist[3], time_str->tm_hour);
90 ASSIGN_VALUE (outlist[4], time_str->tm_min);
91 ASSIGN_VALUE (outlist[5], time_str->tm_sec);