2015-08-02 00:08:58 +02:00
|
|
|
//IO library
|
|
|
|
#ifndef INCLUDE_DATE_H
|
|
|
|
#define INCLUDE_DATE_H
|
2015-08-04 17:48:36 +02:00
|
|
|
#print "[include <date.h>]\n"
|
2015-08-02 00:08:58 +02:00
|
|
|
|
|
|
|
#ifndef INCLUDE_STRING_H
|
|
|
|
#include "../lib/strings.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
:struct date
|
|
|
|
{
|
|
|
|
byte day;
|
|
|
|
byte month;
|
|
|
|
word year;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|