aboutsummaryrefslogtreecommitdiff
path: root/src/calp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/calp.c')
-rw-r--r--src/calp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/calp.c b/src/calp.c
index d18498d..977d24e 100644
--- a/src/calp.c
+++ b/src/calp.c
@@ -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};