| 1134 | } |
| 1135 | |
| 1136 | static void date_yesterday(struct tm *tm, struct tm *now, int *num) |
| 1137 | { |
| 1138 | *num = 0; |
| 1139 | tm->tm_mday = -1; |
| 1140 | update_tm(tm, now, 24*60*60); |
| 1141 | } |
| 1142 | |
| 1143 | static void date_time(struct tm *tm, int hour) |
| 1144 | { |
nothing calls this directly
no test coverage detected