Home
last modified time | relevance | path

Searched refs:timearg (Results 1 – 1 of 1) sorted by relevance

/freebsd/sbin/shutdown/
H A Dshutdown.c437 getoffset(char *timearg) in getoffset() argument
447 if (!strcasecmp(timearg, "now")) { /* now */ in getoffset()
453 if (*timearg == '+') { /* +minutes */ in getoffset()
454 if (!isdigit(*++timearg)) in getoffset()
457 offset = strtol(timearg, &timeunit, 10); in getoffset()
480 for (p = timearg; *p; ++p) in getoffset()
495 switch(strlen(timearg)) { in getoffset()
498 lt->tm_year = ATOI2(timearg); in getoffset()
510 lt->tm_mon = ATOI2(timearg); in getoffset()
516 lt->tm_mday = ATOI2(timearg); in getoffset()
[all …]