forked from KolibriOS/kolibrios
90e6abd011
git-svn-id: svn://kolibrios.org@5676 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
228 B
C
17 lines
228 B
C
//IO library
|
|
#ifndef INCLUDE_DATE_H
|
|
#define INCLUDE_DATE_H
|
|
#print "[include <date.h>]\n"
|
|
|
|
#ifndef INCLUDE_STRING_H
|
|
#include "../lib/strings.h"
|
|
#endif
|
|
|
|
:struct date
|
|
{
|
|
byte day;
|
|
byte month;
|
|
word year;
|
|
};
|
|
|
|
#endif |