repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
compiler
/
include
/
utility
/
date.h
blob
236293004fc43e9882382b00f3639b0e94a22d22
1
#ifndef UTILITY_DATE_H
2
#define UTILITY_DATE_H
3
4
/*
5
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6
$Id$
7
8
Desc: ClockData
9
Lang: English
10
*/
11
12
#ifndef EXEC_TYPES_H
13
# include <exec/types.h>
14
#endif
15
16
struct
ClockData
17
{
18
UWORD sec
;
19
UWORD min
;
20
UWORD hour
;
21
UWORD mday
;
22
UWORD month
;
23
UWORD year
;
24
UWORD wday
;
25
};
26
27
#endif
/* UTILITY_DATE_H */