Lines Matching refs:then
144 struct tm then; in unctime() local
150 (void) memset(&then, 0, sizeof (then)); in unctime()
154 if ((then.tm_mon = lookup(&dbuf[E_MONTH])) < 0) in unctime()
157 then.tm_mday = atoi(&dbuf[E_DAY]); in unctime()
158 then.tm_hour = atoi(&dbuf[E_HOUR]); in unctime()
159 then.tm_min = atoi(&dbuf[E_MINUTE]); in unctime()
160 then.tm_sec = atoi(&dbuf[E_SECOND]); in unctime()
161 then.tm_year = atoi(&dbuf[E_YEAR]) - 1900; in unctime()
162 then.tm_isdst = ndmp_isdst; in unctime()
166 then.tm_yday, then.tm_wday, then.tm_year, then.tm_mon, in unctime()
167 then.tm_mday, then.tm_hour, then.tm_min, then.tm_sec); in unctime()
169 *t = mktime(&then); in unctime()