diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/xtools/gstrentab.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/xtools/gstrentab.x')
-rw-r--r-- | pkg/xtools/gstrentab.x | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pkg/xtools/gstrentab.x b/pkg/xtools/gstrentab.x new file mode 100644 index 00000000..2034c7fd --- /dev/null +++ b/pkg/xtools/gstrentab.x @@ -0,0 +1,40 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# GSTRENTAB -- Procedure to replace blanks with tabs and blanks. + +int procedure gstrentab (line, outline, maxch, tabs) + +int maxch, tabs[ARB] +char line[ARB], outline[ARB] + +int ip, op, ltab + +begin + op = 1 + ip = 1 + + repeat { + ltab = ip + while (line[ltab] == ' ' && op <= maxch) { + ltab = ltab + 1 + if (tabs[ltab] == YES) { + outline[op] = '\t' + ip = ltab + op = op + 1 + } + } + for (; ip < ltab && op <= maxch; ip = ip + 1) { + outline[op] = ' ' + op = op + 1 + } + if (line[ip] == EOS || op >= maxch +1) + break + outline[op] = line[ip] + op = op + 1 + ip = ip + 1 + } until (line[ip] == EOS || op >= maxch+1) + + outline[op] = EOS + return (op-1) +end + |