ocarina/include/core/date.h

18 lines
308 B
C
Raw Normal View History

/*
* Copyright 2015 (c) Anna Schumaker.
*/
#ifndef OCARINA_CORE_DATE_H
#define OCARINA_CORE_DATE_H
struct date {
unsigned int d_year;
unsigned int d_month;
unsigned int d_day;
};
/* Set the provided date structure to today's date. */
void date_today(struct date *);
#endif /* OCARINA_CORE_DATE_H */