Lines Matching defs:arg
51 // typecast xexit->arg to a function pointer, then call it using invalid
53 ((void (*)(int))(al->arg))(0);
862 long xparsetime(char *arg, long zeroes, long *fraction)
867 if (*arg != '.' && !isdigit(*arg)) error_exit("Not a number '%s'", arg);
868 l = strtoul(arg, &end, 10);
894 long long xparsemillitime(char *arg)
898 l = xparsetime(arg, 3, &ll);
903 void xparsetimespec(char *arg, struct timespec *ts)
905 ts->tv_sec = xparsetime(arg, 9, &ts->tv_nsec);