Lines Matching refs:errstr
214 const char *errstr, *outfile = NULL; in main() local
294 INT_MAX, &errstr); in main()
295 if (errstr) in main()
296 errx(2, "width is %s: %s", errstr, optarg); in main()
304 tabsize = strtonum(optarg, 1, INT_MAX, &errstr); in main()
305 if (errstr) in main()
306 errx(2, "tabsize is %s: %s", errstr, optarg); in main()
717 const char *errstr; in parsecmd() local
730 file1start = strtonum(line, 0, INT_MAX, &errstr); in parsecmd()
731 if (errstr) in parsecmd()
732 errx(2, "file1 start is %s: %s", errstr, line); in parsecmd()
742 file1end = strtonum(q, 0, INT_MAX, &errstr); in parsecmd()
743 if (errstr) in parsecmd()
744 errx(2, "file1 end is %s: %s", errstr, line); in parsecmd()
761 file2start = strtonum(q, 0, INT_MAX, &errstr); in parsecmd()
762 if (errstr) in parsecmd()
763 errx(2, "file2 start is %s: %s", errstr, line); in parsecmd()
774 file2end = strtonum(p, 0, INT_MAX, &errstr); in parsecmd()
775 if (errstr) in parsecmd()
776 errx(2, "file2 end is %s: %s", errstr, line); in parsecmd()