Subversion Repositories Kolibri OS

Rev

Rev 5640 | Rev 6887 | 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
5676 pavelyakov 4
#print "[include ]\n"
5640 pavelyakov 5
 
6
#ifndef INCLUDE_STRING_H
7
#include "../lib/strings.h"
8
#endif
9
 
10
:struct date
11
{
12
	byte day;
13
	byte month;
14
	word year;
15
};
16
 
17
#endif