aboutsummaryrefslogtreecommitdiff
path: root/pkg/xtools/gstrentab.x
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/xtools/gstrentab.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/xtools/gstrentab.x')
-rw-r--r--pkg/xtools/gstrentab.x40
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
+