diff options
Diffstat (limited to 'src/calp.c')
| -rw-r--r-- | src/calp.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,6 +11,8 @@ #include <cairo/cairo-pdf.h> #include <cairo/cairo.h> +//#include <pango/pangocairo.h> + /* calp Libraries */ #include "color.h" #include "date.h" @@ -19,6 +21,7 @@ // int main (int argc, char *argv[]) { int main (void) { // Dimension initialization + //PangoLayout *layout; int rows = 6; // Number of weeks in a month int columns = 7; // Number of days in a week int months_in_year = 12; @@ -54,7 +57,7 @@ int main (void) { }; // If year is a leap year, isleap(year) = 1, and will be added to February. - int year = 2028; + int year = 1943; int days_in_month[12] = {31, 28 + isleap(year), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; |
