Systems-programming-labs/Week 2-workshop/first_day_of_month.c

29 lines
728 B
C
Raw Normal View History

2021-08-09 17:20:19 +08:00
#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, .....
}