forked from KolibriOS/kolibrios
61e1662b4e
New library window git-svn-id: svn://kolibrios.org@6887 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
197 B
C
16 lines
197 B
C
//IO library
|
|
#ifndef INCLUDE_DATE_H
|
|
#define INCLUDE_DATE_H
|
|
|
|
#ifndef INCLUDE_STRING_H
|
|
#include "../lib/strings.h"
|
|
#endif
|
|
|
|
:struct date
|
|
{
|
|
byte day;
|
|
byte month;
|
|
word year;
|
|
};
|
|
|
|
#endif |