Subversion Repositories Kolibri OS

Rev

Rev 5640 | Rev 7806 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. //IO library
  2. #ifndef INCLUDE_DATE_H
  3. #define INCLUDE_DATE_H
  4. #print "[include <date.h>]\n"
  5.  
  6. #ifndef INCLUDE_STRING_H
  7. #include "../lib/strings.h"
  8. #endif
  9.  
  10. :struct date
  11. {
  12.         byte day;
  13.         byte month;
  14.         word year;
  15. };
  16.  
  17. #endif