Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5639 → Rev 5640

/programs/cmm/lib/date.h
0,0 → 1,16
//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