1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
31 #define DEBUG_MSG(x) /* */
33 /* #define DEBUG_MSG(args) g_message args ; */
51 GDate *d = g_new0 (GDate, 1); /* happily, 0 is the invalid flag for everything. */
57 g_date_new_dmy (GDateDay day, GDateMonth m, GDateYear y)
60 g_return_val_if_fail (g_date_valid_dmy (day, m, y), NULL);
71 g_assert (g_date_valid (d));
77 g_date_new_julian (guint32 j)
80 g_return_val_if_fail (g_date_valid_julian (j), NULL);
89 g_assert (g_date_valid (d));
95 g_date_free (GDate *d)
97 g_return_if_fail (d != NULL);
103 g_date_valid (GDate *d)
105 g_return_val_if_fail (d != NULL, FALSE);
107 return (d->julian || d->dmy);
110 static const guint8 days_in_months[2][13] =
111 { /* error, jan feb mar apr may jun jul aug sep oct nov dec */
112 { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
113 { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } /* leap year */
116 static const guint16 days_in_year[2][14] =
117 { /* 0, jan feb mar apr may jun jul aug sep oct nov dec */
118 { 0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
119 { 0, 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
123 g_date_valid_month (GDateMonth m)
125 return ( (m > G_DATE_BAD_MONTH) && (m < 13) );
129 g_date_valid_year (GDateYear y)
131 return ( y > G_DATE_BAD_YEAR );
135 g_date_valid_day (GDateDay d)
137 return ( (d > G_DATE_BAD_DAY) && (d < 32) );
141 g_date_valid_weekday (GDateWeekday w)
143 return ( (w > G_DATE_BAD_WEEKDAY) && (w < 8) );
147 g_date_valid_julian (guint32 j)
149 return (j > G_DATE_BAD_JULIAN);
153 g_date_valid_dmy (GDateDay d,
157 return ( (m > G_DATE_BAD_MONTH) &&
159 (d > G_DATE_BAD_DAY) &&
160 (y > G_DATE_BAD_YEAR) && /* must check before using g_date_is_leap_year */
161 (d <= (g_date_is_leap_year (y) ?
162 days_in_months[1][m] : days_in_months[0][m])) );
166 /* "Julian days" just means an absolute number of days, where Day 1 ==
170 g_date_update_julian (GDate *d)
175 g_return_if_fail (d != NULL);
176 g_return_if_fail (d->dmy);
177 g_return_if_fail (!d->julian);
178 g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
180 /* What we actually do is: multiply years * 365 days in the year,
181 * add the number of years divided by 4, subtract the number of
182 * years divided by 100 and add the number of years divided by 400,
183 * which accounts for leap year stuff. Code from Steffen Beyer's
187 year = d->year - 1; /* we know d->year > 0 since it's valid */
189 d->julian_days = year * 365U;
190 d->julian_days += (year >>= 2); /* divide by 4 and add */
191 d->julian_days -= (year /= 25); /* divides original # years by 100 */
192 d->julian_days += year >> 2; /* divides by 4, which divides original by 400 */
194 index = g_date_is_leap_year (d->year) ? 1 : 0;
196 d->julian_days += days_in_year[index][d->month] + d->day;
198 g_return_if_fail (g_date_valid_julian (d->julian_days));
204 g_date_update_dmy (GDate *d)
210 guint32 A, B, C, D, E, M;
212 g_return_if_fail (d != NULL);
213 g_return_if_fail (d->julian);
214 g_return_if_fail (!d->dmy);
215 g_return_if_fail (g_date_valid_julian (d->julian_days));
217 /* Formula taken from the Calendar FAQ; the formula was for the
218 * Julian Period which starts on 1 January 4713 BC, so we add
219 * 1,721,425 to the number of days before doing the formula.
221 * I'm sure this can be simplified for our 1 January 1 AD period
222 * start, but I can't figure out how to unpack the formula.
225 A = d->julian_days + 1721425 + 32045;
226 B = ( 4 *(A + 36524) )/ 146097 - 1;
227 C = A - (146097 * B)/4;
228 D = ( 4 * (C + 365) ) / 1461 - 1;
229 E = C - ((1461*D) / 4);
230 M = (5 * (E - 1) + 2)/153;
232 m = M + 3 - (12*(M/10));
233 day = E - (153*M + 2)/5;
234 y = 100 * B + D - 4800 + (M/10);
236 #ifdef G_ENABLE_DEBUG
237 if (!g_date_valid_dmy (day, m, y))
239 g_warning ("\nOOPS julian: %u computed dmy: %u %u %u\n",
240 d->julian_days, day, m, y);
252 g_date_get_weekday (GDate *d)
254 g_return_val_if_fail (d != NULL, G_DATE_BAD_WEEKDAY);
255 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_WEEKDAY);
259 g_date_update_julian (d);
261 g_return_val_if_fail (d->julian, G_DATE_BAD_WEEKDAY);
263 return ((d->julian_days - 1) % 7) + 1;
267 g_date_get_month (GDate *d)
269 g_return_val_if_fail (d != NULL, G_DATE_BAD_MONTH);
270 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_MONTH);
274 g_date_update_dmy (d);
276 g_return_val_if_fail (d->dmy, G_DATE_BAD_MONTH);
282 g_date_get_year (GDate *d)
284 g_return_val_if_fail (d != NULL, G_DATE_BAD_YEAR);
285 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_YEAR);
289 g_date_update_dmy (d);
291 g_return_val_if_fail (d->dmy, G_DATE_BAD_YEAR);
297 g_date_get_day (GDate *d)
299 g_return_val_if_fail (d != NULL, G_DATE_BAD_DAY);
300 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_DAY);
304 g_date_update_dmy (d);
306 g_return_val_if_fail (d->dmy, G_DATE_BAD_DAY);
312 g_date_get_julian (GDate *d)
314 g_return_val_if_fail (d != NULL, G_DATE_BAD_JULIAN);
315 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_JULIAN);
319 g_date_update_julian (d);
321 g_return_val_if_fail (d->julian, G_DATE_BAD_JULIAN);
323 return d->julian_days;
327 g_date_get_day_of_year (GDate *d)
331 g_return_val_if_fail (d != NULL, 0);
332 g_return_val_if_fail (g_date_valid (d), 0);
336 g_date_update_dmy (d);
338 g_return_val_if_fail (d->dmy, 0);
340 index = g_date_is_leap_year (d->year) ? 1 : 0;
342 return (days_in_year[index][d->month] + d->day);
346 g_date_get_monday_week_of_year (GDate *d)
352 g_return_val_if_fail (d != NULL, 0);
353 g_return_val_if_fail (g_date_valid (d), 0);
357 g_date_update_dmy (d);
359 g_return_val_if_fail (d->dmy, 0);
361 g_date_clear (&first, 1);
363 g_date_set_dmy (&first, 1, 1, d->year);
365 wd = g_date_get_weekday (&first) - 1; /* make Monday day 0 */
366 day = g_date_get_day_of_year (d) - 1;
368 return ((day + wd)/7U + (wd == 0 ? 1 : 0));
372 g_date_get_sunday_week_of_year (GDate *d)
378 g_return_val_if_fail (d != NULL, 0);
379 g_return_val_if_fail (g_date_valid (d), 0);
383 g_date_update_dmy (d);
385 g_return_val_if_fail (d->dmy, 0);
387 g_date_clear (&first, 1);
389 g_date_set_dmy (&first, 1, 1, d->year);
391 wd = g_date_get_weekday (&first);
392 if (wd == 7) wd = 0; /* make Sunday day 0 */
393 day = g_date_get_day_of_year (d) - 1;
395 return ((day + wd)/7U + (wd == 0 ? 1 : 0));
399 g_date_clear (GDate *d, guint ndates)
401 g_return_if_fail (d != NULL);
402 g_return_if_fail (ndates != 0);
404 memset (d, 0x0, ndates*sizeof (GDate));
407 G_LOCK_DEFINE_STATIC (g_date_global);
409 /* These are for the parser, output to the user should use *
410 * g_date_strftime () - this creates more never-freed memory to annoy
411 * all those memory debugger users. :-)
414 static gchar *long_month_names[13] =
416 "Error", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
419 static gchar *short_month_names[13] =
421 "Error", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
424 /* This tells us if we need to update the parse info */
425 static gchar *current_locale = NULL;
427 /* order of these in the current locale */
428 static GDateDMY dmy_order[3] =
430 G_DATE_DAY, G_DATE_MONTH, G_DATE_YEAR
433 /* Where to chop two-digit years: i.e., for the 1930 default, numbers
434 * 29 and below are counted as in the year 2000, numbers 30 and above
435 * are counted as in the year 1900.
438 static GDateYear twodigit_start_year = 1930;
440 /* It is impossible to enter a year between 1 AD and 99 AD with this
443 static gboolean using_twodigit_years = FALSE;
445 struct _GDateParseTokens {
451 typedef struct _GDateParseTokens GDateParseTokens;
455 /* HOLDS: g_date_global_lock */
457 g_date_fill_parse_tokens (const gchar *str, GDateParseTokens *pt)
459 gchar num[4][NUM_LEN+1];
463 /* We count 4, but store 3; so we can give an error
466 num[0][0] = num[1][0] = num[2][0] = num[3][0] = '\0';
468 s = (const guchar *) str;
470 while (*s && pt->num_ints < 4)
474 while (*s && isdigit (*s) && i <= NUM_LEN)
476 num[pt->num_ints][i] = *s;
483 num[pt->num_ints][i] = '\0';
487 if (*s == '\0') break;
492 pt->n[0] = pt->num_ints > 0 ? atoi (num[0]) : 0;
493 pt->n[1] = pt->num_ints > 1 ? atoi (num[1]) : 0;
494 pt->n[2] = pt->num_ints > 2 ? atoi (num[2]) : 0;
496 pt->month = G_DATE_BAD_MONTH;
498 if (pt->num_ints < 3)
503 strncpy (lcstr, str, 127);
508 if (long_month_names[i] != NULL)
510 const gchar *found = strstr (lcstr, long_month_names[i]);
519 if (short_month_names[i] != NULL)
521 const gchar *found = strstr (lcstr, short_month_names[i]);
535 /* HOLDS: g_date_global_lock */
537 g_date_prepare_to_parse (const gchar *str, GDateParseTokens *pt)
539 const gchar *locale = setlocale (LC_TIME, NULL);
540 gboolean recompute_localeinfo = FALSE;
543 g_return_if_fail (locale != NULL); /* should not happen */
545 g_date_clear (&d, 1); /* clear for scratch use */
547 if ( (current_locale == NULL) || (strcmp (locale, current_locale) != 0) )
549 recompute_localeinfo = TRUE; /* Uh, there used to be a reason for the temporary */
552 if (recompute_localeinfo)
555 GDateParseTokens testpt;
558 g_free (current_locale); /* still works if current_locale == NULL */
560 current_locale = g_strdup (locale);
564 g_date_set_dmy (&d, 1, i, 1);
566 g_return_if_fail (g_date_valid (&d));
568 g_date_strftime (buf, 127, "%b", &d);
569 g_free (short_month_names[i]);
571 short_month_names[i] = g_strdup (buf);
575 g_date_strftime (buf, 127, "%B", &d);
576 g_free (long_month_names[i]);
578 long_month_names[i] = g_strdup (buf);
583 /* Determine DMY order */
585 /* had to pick a random day - don't change this, some strftimes
586 * are broken on some days, and this one is good so far. */
587 g_date_set_dmy (&d, 4, 7, 1976);
589 g_date_strftime (buf, 127, "%x", &d);
591 g_date_fill_parse_tokens (buf, &testpt);
594 while (i < testpt.num_ints)
599 dmy_order[i] = G_DATE_MONTH;
602 dmy_order[i] = G_DATE_DAY;
605 using_twodigit_years = TRUE; /* FALL THRU */
607 dmy_order[i] = G_DATE_YEAR;
610 /* leave it unchanged */
616 #ifdef G_ENABLE_DEBUG
617 DEBUG_MSG (("**GDate prepared a new set of locale-specific parse rules."));
621 DEBUG_MSG ((" %s %s", long_month_names[i], short_month_names[i]));
624 if (using_twodigit_years)
625 DEBUG_MSG (("**Using twodigit years with cutoff year: %u", twodigit_start_year));
631 switch (dmy_order[i])
634 strings[i] = "Month";
648 DEBUG_MSG (("**Order: %s, %s, %s", strings[0], strings[1], strings[2]));
649 DEBUG_MSG (("**Sample date in this locale: `%s'", buf));
654 g_date_fill_parse_tokens (str, pt);
658 g_date_set_parse (GDate *d,
662 guint m = G_DATE_BAD_MONTH, day = G_DATE_BAD_DAY, y = G_DATE_BAD_YEAR;
664 g_return_if_fail (d != NULL);
669 G_LOCK (g_date_global);
671 g_date_prepare_to_parse (str, &pt);
673 DEBUG_MSG (("Found %d ints, `%d' `%d' `%d' and written out month %d",
674 pt.num_ints, pt.n[0], pt.n[1], pt.n[2], pt.month));
677 if (pt.num_ints == 4)
679 G_UNLOCK (g_date_global);
680 return; /* presumably a typo; bail out. */
688 g_assert (pt.num_ints < 4); /* i.e., it is 2 or 3 */
690 while (i < pt.num_ints && j < 3)
692 switch (dmy_order[j])
696 if (pt.num_ints == 2 && pt.month != G_DATE_BAD_MONTH)
699 ++j; /* skip months, but don't skip this number */
708 if (pt.num_ints == 2 && pt.month == G_DATE_BAD_MONTH)
711 ++j; /* skip days, since we may have month/year */
721 if (using_twodigit_years && y < 100)
723 guint two = twodigit_start_year % 100;
724 guint century = (twodigit_start_year / 100) * 100;
742 if (pt.num_ints == 3 && !g_date_valid_dmy (day, m, y))
749 if (using_twodigit_years && y < 100)
750 y = G_DATE_BAD_YEAR; /* avoids ambiguity */
752 else if (pt.num_ints == 2)
754 if (m == G_DATE_BAD_MONTH && pt.month != G_DATE_BAD_MONTH)
760 else if (pt.num_ints == 1)
762 if (pt.month != G_DATE_BAD_MONTH)
764 /* Month name and year? */
771 /* Try yyyymmdd and yymmdd */
773 m = (pt.n[0]/100) % 100;
777 /* FIXME move this into a separate function */
778 if (using_twodigit_years && y < 100)
780 guint two = twodigit_start_year % 100;
781 guint century = (twodigit_start_year / 100) * 100;
791 /* See if we got anything valid out of all this. */
792 /* y < 8000 is to catch 19998 style typos; the library is OK up to 65535 or so */
793 if (y < 8000 && g_date_valid_dmy (day, m, y))
800 #ifdef G_ENABLE_DEBUG
802 DEBUG_MSG (("Rejected DMY %u %u %u", day, m, y));
804 G_UNLOCK (g_date_global);
808 g_date_set_time (GDate *d,
814 g_return_if_fail (d != NULL);
816 #ifdef HAVE_LOCALTIME_R
817 localtime_r (&t, &tm);
820 struct tm *ptm = localtime (&t);
822 memcpy ((void *) &tm, (void *) ptm, sizeof(struct tm));
828 d->month = tm.tm_mon + 1;
830 d->year = tm.tm_year + 1900;
832 g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
838 g_date_set_month (GDate *d,
841 g_return_if_fail (d != NULL);
842 g_return_if_fail (g_date_valid_month (m));
844 if (d->julian && !d->dmy) g_date_update_dmy(d);
849 if (g_date_valid_dmy (d->day, d->month, d->year))
856 g_date_set_day (GDate *d,
859 g_return_if_fail (d != NULL);
860 g_return_if_fail (g_date_valid_day (day));
862 if (d->julian && !d->dmy) g_date_update_dmy(d);
867 if (g_date_valid_dmy (d->day, d->month, d->year))
874 g_date_set_year (GDate *d,
877 g_return_if_fail (d != NULL);
878 g_return_if_fail (g_date_valid_year (y));
880 if (d->julian && !d->dmy) g_date_update_dmy(d);
885 if (g_date_valid_dmy (d->day, d->month, d->year))
892 g_date_set_dmy (GDate *d,
897 g_return_if_fail (d != NULL);
898 g_return_if_fail (g_date_valid_dmy (day, m, y));
910 g_date_set_julian (GDate *d, guint32 j)
912 g_return_if_fail (d != NULL);
913 g_return_if_fail (g_date_valid_julian (j));
922 g_date_is_first_of_month (GDate *d)
924 g_return_val_if_fail (d != NULL, FALSE);
925 g_return_val_if_fail (g_date_valid (d), FALSE);
929 g_date_update_dmy (d);
931 g_return_val_if_fail (d->dmy, FALSE);
933 if (d->day == 1) return TRUE;
938 g_date_is_last_of_month (GDate *d)
942 g_return_val_if_fail (d != NULL, FALSE);
943 g_return_val_if_fail (g_date_valid (d), FALSE);
947 g_date_update_dmy (d);
949 g_return_val_if_fail (d->dmy, FALSE);
951 index = g_date_is_leap_year (d->year) ? 1 : 0;
953 if (d->day == days_in_months[index][d->month]) return TRUE;
958 g_date_add_days (GDate *d, guint ndays)
960 g_return_if_fail (d != NULL);
961 g_return_if_fail (g_date_valid (d));
965 g_date_update_julian (d);
967 g_return_if_fail (d->julian);
969 d->julian_days += ndays;
974 g_date_subtract_days (GDate *d, guint ndays)
976 g_return_if_fail (d != NULL);
977 g_return_if_fail (g_date_valid (d));
981 g_date_update_julian (d);
983 g_return_if_fail (d->julian);
984 g_return_if_fail (d->julian_days > ndays);
986 d->julian_days -= ndays;
991 g_date_add_months (GDate *d,
997 g_return_if_fail (d != NULL);
998 g_return_if_fail (g_date_valid (d));
1002 g_date_update_dmy (d);
1004 g_return_if_fail (d->dmy);
1006 nmonths += d->month - 1;
1009 months = nmonths%12;
1011 d->month = months + 1;
1014 index = g_date_is_leap_year (d->year) ? 1 : 0;
1016 if (d->day > days_in_months[index][d->month])
1017 d->day = days_in_months[index][d->month];
1021 g_return_if_fail (g_date_valid (d));
1025 g_date_subtract_months (GDate *d,
1028 guint years, months;
1031 g_return_if_fail (d != NULL);
1032 g_return_if_fail (g_date_valid (d));
1036 g_date_update_dmy (d);
1038 g_return_if_fail (d->dmy);
1041 months = nmonths%12;
1043 g_return_if_fail (d->year > years);
1047 if (d->month > months) d->month -= months;
1051 d->month = 12 - months;
1055 index = g_date_is_leap_year (d->year) ? 1 : 0;
1057 if (d->day > days_in_months[index][d->month])
1058 d->day = days_in_months[index][d->month];
1062 g_return_if_fail (g_date_valid (d));
1066 g_date_add_years (GDate *d,
1069 g_return_if_fail (d != NULL);
1070 g_return_if_fail (g_date_valid (d));
1074 g_date_update_dmy (d);
1076 g_return_if_fail (d->dmy);
1080 if (d->month == 2 && d->day == 29)
1082 if (!g_date_is_leap_year (d->year))
1092 g_date_subtract_years (GDate *d,
1095 g_return_if_fail (d != NULL);
1096 g_return_if_fail (g_date_valid (d));
1100 g_date_update_dmy (d);
1102 g_return_if_fail (d->dmy);
1103 g_return_if_fail (d->year > nyears);
1107 if (d->month == 2 && d->day == 29)
1109 if (!g_date_is_leap_year (d->year))
1120 g_date_is_leap_year (GDateYear year)
1122 g_return_val_if_fail (g_date_valid_year (year), FALSE);
1124 return ( (((year % 4) == 0) && ((year % 100) != 0)) ||
1125 (year % 400) == 0 );
1129 g_date_get_days_in_month (GDateMonth month,
1134 g_return_val_if_fail (g_date_valid_year (year), 0);
1135 g_return_val_if_fail (g_date_valid_month (month), 0);
1137 index = g_date_is_leap_year (year) ? 1 : 0;
1139 return days_in_months[index][month];
1143 g_date_get_monday_weeks_in_year (GDateYear year)
1147 g_return_val_if_fail (g_date_valid_year (year), 0);
1149 g_date_clear (&d, 1);
1150 g_date_set_dmy (&d, 1, 1, year);
1151 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1152 g_date_set_dmy (&d, 31, 12, year);
1153 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1154 if (g_date_is_leap_year (year))
1156 g_date_set_dmy (&d, 2, 1, year);
1157 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1158 g_date_set_dmy (&d, 30, 12, year);
1159 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1165 g_date_get_sunday_weeks_in_year (GDateYear year)
1169 g_return_val_if_fail (g_date_valid_year (year), 0);
1171 g_date_clear (&d, 1);
1172 g_date_set_dmy (&d, 1, 1, year);
1173 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1174 g_date_set_dmy (&d, 31, 12, year);
1175 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1176 if (g_date_is_leap_year (year))
1178 g_date_set_dmy (&d, 2, 1, year);
1179 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1180 g_date_set_dmy (&d, 30, 12, year);
1181 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1187 g_date_compare (GDate *lhs,
1190 g_return_val_if_fail (lhs != NULL, 0);
1191 g_return_val_if_fail (rhs != NULL, 0);
1192 g_return_val_if_fail (g_date_valid (lhs), 0);
1193 g_return_val_if_fail (g_date_valid (rhs), 0);
1195 /* Remember the self-comparison case! I think it works right now. */
1200 if (lhs->julian && rhs->julian)
1202 if (lhs->julian_days < rhs->julian_days) return -1;
1203 else if (lhs->julian_days > rhs->julian_days) return 1;
1206 else if (lhs->dmy && rhs->dmy)
1208 if (lhs->year < rhs->year) return -1;
1209 else if (lhs->year > rhs->year) return 1;
1212 if (lhs->month < rhs->month) return -1;
1213 else if (lhs->month > rhs->month) return 1;
1216 if (lhs->day < rhs->day) return -1;
1217 else if (lhs->day > rhs->day) return 1;
1226 if (!lhs->julian) g_date_update_julian (lhs);
1227 if (!rhs->julian) g_date_update_julian (rhs);
1228 g_return_val_if_fail (lhs->julian, 0);
1229 g_return_val_if_fail (rhs->julian, 0);
1233 return 0; /* warnings */
1238 g_date_to_struct_tm (GDate *d,
1243 g_return_if_fail (d != NULL);
1244 g_return_if_fail (g_date_valid (d));
1245 g_return_if_fail (tm != NULL);
1249 g_date_update_dmy (d);
1251 g_return_if_fail (d->dmy);
1253 /* zero all the irrelevant fields to be sure they're valid */
1255 /* On Linux and maybe other systems, there are weird non-POSIX
1256 * fields on the end of struct tm that choke strftime if they
1257 * contain garbage. So we need to 0 the entire struct, not just the
1258 * fields we know to exist.
1261 memset (tm, 0x0, sizeof (struct tm));
1263 tm->tm_mday = d->day;
1264 tm->tm_mon = d->month - 1; /* 0-11 goes in tm */
1265 tm->tm_year = ((int)d->year) - 1900; /* X/Open says tm_year can be negative */
1267 day = g_date_get_weekday (d);
1268 if (day == 7) day = 0; /* struct tm wants days since Sunday, so Sunday is 0 */
1270 tm->tm_wday = (int)day;
1272 tm->tm_yday = g_date_get_day_of_year (d) - 1; /* 0 to 365 */
1273 tm->tm_isdst = -1; /* -1 means "information not available" */
1277 g_date_strftime (gchar *s,
1279 const gchar *format,
1285 g_return_val_if_fail (d != NULL, 0);
1286 g_return_val_if_fail (g_date_valid (d), 0);
1287 g_return_val_if_fail (slen > 0, 0);
1288 g_return_val_if_fail (format != 0, 0);
1289 g_return_val_if_fail (s != 0, 0);
1291 g_date_to_struct_tm (d, &tm);
1293 retval = strftime (s, slen, format, &tm);
1296 /* If retval == 0, the contents of s are undefined. We define