HomeSort by: relevance | last modified time | path
    Searched refs:rt_buf (Results 1 - 2 of 2) sorted by relevancy

  /src/games/rogue/
machdep.c 232 md_gct(struct rogue_time *rt_buf)
240 rt_buf->year = t->tm_year;
241 rt_buf->month = t->tm_mon + 1;
242 rt_buf->day = t->tm_mday;
243 rt_buf->hour = t->tm_hour;
244 rt_buf->minute = t->tm_min;
245 rt_buf->second = t->tm_sec;
265 md_gfmt(const char *fname, struct rogue_time *rt_buf)
275 rt_buf->year = t->tm_year;
276 rt_buf->month = t->tm_mon + 1
    [all...]
save.c 97 struct rogue_time rt_buf; local in function:save_into_file
161 md_gct(&rt_buf);
162 rt_buf.second += 10; /* allow for some processing time */
163 r_write(fp, &rt_buf, sizeof(rt_buf));

Completed in 14 milliseconds