Symbol: ATOI2
bin/date/date.c
256
tm.tm_year = ATOI2(string) * 100;
bin/date/date.c
257
tm.tm_year += ATOI2(string);
bin/date/date.c
266
tm.tm_mon = ATOI2(string);
bin/date/date.c
277
tm.tm_mday = ATOI2(string);
bin/date/date.c
306
tm.tm_hour = ATOI2(string);
bin/date/date.c
317
tm.tm_min = ATOI2(string);
bin/date/date.c
328
tm.tm_sec = ATOI2(string);
bin/date/date.c
417
lt->tm_sec = ATOI2(dot);
bin/date/date.c
429
lt->tm_year = ATOI2(p) * 100 - TM_YEAR_BASE;
bin/date/date.c
436
lt->tm_year += ATOI2(p);
bin/date/date.c
438
yearset = ATOI2(p);
bin/date/date.c
446
lt->tm_mon = ATOI2(p);
bin/date/date.c
452
lt->tm_mday = ATOI2(p);
bin/date/date.c
500
lt->tm_hour = ATOI2(p);
bin/date/date.c
505
lt->tm_min = ATOI2(p);
bin/pax/sel_subs.c
571
lt->tm_sec = ATOI2(dot);
bin/pax/sel_subs.c
580
lt->tm_year = ATOI2(p) * 100 - TM_YEAR_BASE;
bin/pax/sel_subs.c
585
lt->tm_year += ATOI2(p);
bin/pax/sel_subs.c
587
yearset = ATOI2(p);
bin/pax/sel_subs.c
595
lt->tm_mon = ATOI2(p);
bin/pax/sel_subs.c
599
lt->tm_mday = ATOI2(p);
bin/pax/sel_subs.c
602
lt->tm_hour = ATOI2(p);
bin/pax/sel_subs.c
605
lt->tm_min = ATOI2(p);
games/pom/pom.c
232
bigyear = ATOI2(p);
games/pom/pom.c
238
lt->tm_year += ATOI2(p);
games/pom/pom.c
240
lt->tm_year = ATOI2(p);
games/pom/pom.c
246
lt->tm_mon = ATOI2(p);
games/pom/pom.c
252
lt->tm_mday = ATOI2(p);
games/pom/pom.c
257
lt->tm_hour = ATOI2(p);
sbin/shutdown/shutdown.c
483
lt->tm_year = ATOI2(timearg) * 100 - TM_YEAR_BASE;
sbin/shutdown/shutdown.c
488
lt->tm_year += ATOI2(timearg);
sbin/shutdown/shutdown.c
490
yearset = ATOI2(timearg);
sbin/shutdown/shutdown.c
498
lt->tm_mon = ATOI2(timearg);
sbin/shutdown/shutdown.c
504
lt->tm_mday = ATOI2(timearg);
sbin/shutdown/shutdown.c
509
lt->tm_hour = ATOI2(timearg);
sbin/shutdown/shutdown.c
514
lt->tm_min = ATOI2(timearg);
usr.bin/at/stime.c
100
t->tm_hour = ATOI2(arg);
usr.bin/at/stime.c
103
t->tm_min = ATOI2(arg);
usr.bin/at/stime.c
75
t->tm_sec = ATOI2(p);
usr.bin/at/stime.c
81
t->tm_year = ATOI2(arg) * 100 - TM_YEAR_BASE;
usr.bin/at/stime.c
86
t->tm_year += ATOI2(arg);
usr.bin/at/stime.c
88
yearset = ATOI2(arg);
usr.bin/at/stime.c
93
t->tm_mon = ATOI2(arg);
usr.bin/at/stime.c
97
t->tm_mday = ATOI2(arg);
usr.bin/calendar/calendar.c
694
ttm.tm_mon = ATOI2(ds) - 1;
usr.bin/calendar/calendar.c
698
ttm.tm_mday = ATOI2(ds);
usr.bin/calendar/calendar.c
704
ttm.tm_year = ATOI2(ds) * 100 - TM_YEAR_BASE;
usr.bin/calendar/calendar.c
706
ttm.tm_year += ATOI2(ds);
usr.bin/calendar/calendar.c
708
ttm.tm_year = ATOI2(ds);
usr.bin/touch/touch.c
267
t->tm_sec = ATOI2(p);
usr.bin/touch/touch.c
273
t->tm_year = ATOI2(arg) * 100 - TM_YEAR_BASE;
usr.bin/touch/touch.c
278
t->tm_year += ATOI2(arg);
usr.bin/touch/touch.c
280
yearset = ATOI2(arg);
usr.bin/touch/touch.c
290
t->tm_mon = ATOI2(arg);
usr.bin/touch/touch.c
294
t->tm_mday = ATOI2(arg);
usr.bin/touch/touch.c
297
t->tm_hour = ATOI2(arg);
usr.bin/touch/touch.c
300
t->tm_min = ATOI2(arg);
usr.bin/touch/touch.c
326
t->tm_mon = ATOI2(arg); /* MMDDhhmm[yy] */
usr.bin/touch/touch.c
328
t->tm_mday = ATOI2(arg);
usr.bin/touch/touch.c
329
t->tm_hour = ATOI2(arg);
usr.bin/touch/touch.c
330
t->tm_min = ATOI2(arg);
usr.bin/touch/touch.c
332
year = ATOI2(arg);