timelib_day_of_week 102 ext/date/lib/dow.c jan1weekday = timelib_day_of_week(y, 1, 1); timelib_day_of_week 103 ext/date/lib/dow.c weekday = timelib_day_of_week(y, m, d); timelib_day_of_week 145 ext/date/lib/dow.c dow = timelib_day_of_week(y, 1, 1); timelib_day_of_week 171 ext/date/lib/dow.c printf("dow = %d\n", timelib_day_of_week(1978, 12, 22)); /* 5 */ timelib_day_of_week 172 ext/date/lib/dow.c printf("dow = %d\n", timelib_day_of_week(2005, 2, 19)); /* 6 */ timelib_day_of_week 77 ext/date/lib/timelib.h timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d); timelib_day_of_week 152 ext/date/lib/tm2unixtime.c current_dow = timelib_day_of_week(time->y, time->m, time->d); timelib_day_of_week 231 ext/date/lib/tm2unixtime.c dow = timelib_day_of_week(time->y, time->m, time->d); timelib_day_of_week 1053 ext/date/php_date.c timelib_sll day_of_week = timelib_day_of_week(y, m, d); timelib_day_of_week 1062 ext/date/php_date.c timelib_sll day_of_week = timelib_day_of_week(y, m, d); timelib_day_of_week 1116 ext/date/php_date.c case 'w': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_week(t->y, t->m, t->d)); break; timelib_day_of_week 1322 ext/date/php_date.c case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break; timelib_day_of_week 1640 ext/date/php_date.c ta.tm_wday = timelib_day_of_week(ts->y, ts->m, ts->d); timelib_day_of_week 1748 ext/date/php_date.c add_assoc_long(return_value, "tm_wday", timelib_day_of_week(ts->y, ts->m, ts->d)); timelib_day_of_week 1758 ext/date/php_date.c add_next_index_long(return_value, timelib_day_of_week(ts->y, ts->m, ts->d)); timelib_day_of_week 1791 ext/date/php_date.c add_assoc_long(return_value, "wday", timelib_day_of_week(ts->y, ts->m, ts->d));