timestr
const char *timestr(int);
score[i].time, timestr(score[i].real_time),
char timestr[TIMESIZE];
strftime(timestr, TIMESIZE, "%a %b %e %T %Y", &runtime);
timestr);
char timestr[TIMESIZE];
strftime(timestr, TIMESIZE, "%a %b %e %T %Y", &runtime);
job->queue, timestr);
strftime(timestr, TIMESIZE, "%b %e, %Y %R", &runtime);
timestr, pw ? pw->pw_name : "???",
char *timestr;
timestr = ctime(&t) + 4;
timestr[12] = '\0';
if (timestr[4] == ' ')
timestr[4] = '0';
timestr);
char *timestr = reply_string;
while (!isspace((unsigned char)*timestr))
timestr++;
while (isspace((unsigned char)*timestr))
timestr++;
if (strncmp(timestr, "191", 3) == 0) {
timestr[0] = ' ';
timestr[1] = '2';
timestr[2] = '0';
char timestr[PATH_MAX + 4];
(void)strftime(timestr, sizeof(timestr), TIME_FORMAT,
printf("<\"%s\">", timestr);
char timestr[NTIME];
strftime(timestr, sizeof(timestr), "%a %b %e %T %Y", localtime(&t));
addlinef(bp, "Command finished at %s", timestr);
"at %s", status, timestr);
WTERMSIG(ret), timestr);
char timestr[26]; /* "w yyyy/mm/dd hh:mm:ss UTC" */
memset(timestr, 0, sizeof(timestr));
n = strlcat(timestr, val, sizeof(timestr));
if (n >= sizeof(timestr)) {
p = strptime(timestr, DB_TIMEFMT, &tm);
p = strptime(timestr, OLD_DB_TIMEFMT, &tm);