Subversion Repositories Kolibri OS

Rev

Rev 5676 | Rev 7806 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5640 pavelyakov 1
//IO library
2
#ifndef INCLUDE_DATE_H
3
#define INCLUDE_DATE_H
4
 
5
#ifndef INCLUDE_STRING_H
6
#include "../lib/strings.h"
7
#endif
8
 
9
:struct date
10
{
11
	byte day;
12
	byte month;
13
	word year;
14
};
15
 
16
#endif