Searched defs:atoi_for2 (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/touch/
H A Dtouch.c54 static int atoi_for2(char *);
403 seconds = atoi_for2(p+1);
413 century = atoi_for2(t);
417 tm.tm_year = atoi_for2(t);
426 tm.tm_mon = atoi_for2(t) - 1;
428 tm.tm_mday = atoi_for2(t);
430 tm.tm_hour = atoi_for2(t);
432 tm.tm_min = atoi_for2(t);
465 tm.tm_year = atoi_for2(t+8);
470 tm.tm_mon = atoi_for2(
492 atoi_for2(char *p) function
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/nca/
H A Dncab2clf.c363 * atoi_for2(p, value)
369 atoi_for2(char *p, int *value) { function
399 if (!atoi_for2(p+1, &seconds))
410 if (!atoi_for2(t, &century))
415 if (!atoi_for2(t, &tm->tm_year))
425 if (!atoi_for2(t, &tm->tm_mon))
430 if (!atoi_for2(t, &tm->tm_mday))
434 if (!atoi_for2(t, &tm->tm_hour))
438 if (!atoi_for2(t, &tm->tm_min))
/illumos-gate/usr/src/cmd/cron/
H A Dat.c92 static int atoi_for2(char *);
949 seconds = atoi_for2(p+1);
959 century = atoi_for2(t);
962 tm.tm_year = atoi_for2(t);
970 tm.tm_mon = atoi_for2(t) - 1;
972 tm.tm_mday = atoi_for2(t);
974 tm.tm_hour = atoi_for2(t);
976 tm.tm_min = atoi_for2(t);
992 atoi_for2(char *p) { function

Completed in 282 milliseconds