Lines Matching defs:date
46 * date - with format capabilities and international flair
106 gettext("date: invalid argument -- %s\n"),
136 perror(gettext("date: Failed to obtain system time"));
143 perror(gettext("date: Failed to adjust date"));
181 setdate(struct tm *current_date, char *date)
195 /* Parse date string */
196 if ((secptr = strchr(date, '.')) != NULL && strlen(&secptr[1]) == 2 &&
201 len = strlen(date);
204 if (!isdigit(date[i])) {
206 gettext("date: bad conversion\n"));
210 switch (strlen(date)) {
212 yy = atoi(&date[8]);
213 date[8] = '\0';
221 if (atoi(&date[8]) <= 68) {
222 yy = 1900 + (atoi(&date[8]) + 100);
224 yy = 1900 + atoi(&date[8]);
226 date[8] = '\0';
238 (void) fprintf(stderr, gettext("date: bad conversion\n"));
242 min = atoi(&date[minidx]);
243 date[minidx] = '\0';
244 hh = atoi(&date[minidx-2]);
245 date[minidx-2] = '\0';
252 dd = atoi(&date[2]);
253 date[2] = '\0';
254 mm = atoi(&date[0]);
260 /* Validate date elements */
269 (void) fprintf(stderr, gettext("date: bad conversion\n"));
273 /* Build date and time number */
312 perror("date");