From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- sys/fmtio/fmterr.x | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sys/fmtio/fmterr.x (limited to 'sys/fmtio/fmterr.x') diff --git a/sys/fmtio/fmterr.x b/sys/fmtio/fmterr.x new file mode 100644 index 00000000..7a341764 --- /dev/null +++ b/sys/fmtio/fmterr.x @@ -0,0 +1,25 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# FMT_ERR -- Print the format string on the standard error output, marking +# the position within the string to which the error refers. + +procedure fmt_err (preamble, format, index) + +char preamble[ARB], format[ARB] +int index, ip + +begin + call putline (STDERR, "(") + call putline (STDERR, preamble) + call putline (STDERR, "format = \"") + + for (ip=1; ip < index && format[ip] != EOS; ip=ip+1) + call putcc (STDERR, format[ip]) + + if (format[ip] != EOS) { # mark position of error + call putline (STDERR, "<>") + for (; format[ip] != EOS; ip=ip+1) + call putcc (STDERR, format[ip]) + } + call putline (STDERR, "\")\n") +end -- cgit