mirror of
https://github.com/peter-tanner/Systems-programming-labs.git
synced 2024-11-30 09:00:30 +08:00
29 lines
728 B
C
29 lines
728 B
C
#include <time.h>
|
|
#include <string.h>
|
|
|
|
// written by Chris.McDonald@uwa.edu.au
|
|
|
|
// PROVIDED WITHOUT MUCH EXPLANATION YET!
|
|
|
|
// RETURNS 0=Sun, 1=Mon, .....
|
|
//
|
|
int first_day_of_month(int month, int year)
|
|
{
|
|
struct tm tm;
|
|
|
|
// SET ALL FIELDS OF tm TO ZERO TO MAKE SOME FIELDS 'UNKNOWN'
|
|
memset(&tm, 0, sizeof(tm));
|
|
|
|
// INITIALIZE THE FILEDS THAT WE ALREADY KNOW
|
|
tm.tm_mday = 1;
|
|
tm.tm_mon = month-1; // 0=Jan, 1=Feb, ....
|
|
tm.tm_year = year-1900;
|
|
|
|
// ASK THE POSIX FUNCTION mktime TO DETERMINE THE 'UNKNOWN' FIELDS
|
|
// See: http://pubs.opengroup.org/onlinepubs/9699919799/
|
|
mktime(&tm);
|
|
|
|
// RETURN THE INTEGER MONTH VALUE
|
|
return tm.tm_wday; // 0=Sun, 1=Mon, .....
|
|
}
|