DWCDate

Definition


#include <dwc.h>

typedef struct tagDWCDate {
    int mday;
    int mon;
    int year;
    int wday;
    int yday;
} DWCDate;

Description

mday Day of month. [1,31]
mon Months elapsed since January. [0,11]
year Western calendar year. [1,...]
wday Number of days elapsed since Sunday. [0,6]
yday Number of days elapsed since January 1. [0,365]

Revision History


CONFIDENTIAL