aboutsummaryrefslogtreecommitdiff
path: root/pkg/xtools/gstrentab.x
blob: 2034c7fd01632e1c2f7540da929af51181e91676 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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