Lines Matching defs:arg
506 optfmt(const char *arg)
510 for (i = 0; i < F_CNT && strcmp(arg, fmtlist[i]); i++);
512 errx(1, "%s: Unknown format", arg);
520 optaddr(const char *arg)
526 x = strtoul(arg, &s, 0);
527 if (errno || !*arg || *s || x > MAXU32)
528 errx(1, "%s: Illegal address", arg);
536 optpage(const char *arg, int hi)
542 x = strtol(arg, &s, 0);
543 if (errno || !*arg || *s || x < 0 || x > hi)
544 errx(1, "%s: Illegal page number", arg);