kolibrios-gitea/programs/cmm/lib/date.h

16 lines
197 B
C
Raw Normal View History

//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