1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 1988 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 28*7c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate /* 31*7c478bd9Sstevel@tonic-gate * University Copyright- Copyright (c) 1982, 1986, 1988 32*7c478bd9Sstevel@tonic-gate * The Regents of the University of California 33*7c478bd9Sstevel@tonic-gate * All Rights Reserved 34*7c478bd9Sstevel@tonic-gate * 35*7c478bd9Sstevel@tonic-gate * University Acknowledgment- Portions of this document are derived from 36*7c478bd9Sstevel@tonic-gate * software developed by the University of California, Berkeley, and its 37*7c478bd9Sstevel@tonic-gate * contributors. 38*7c478bd9Sstevel@tonic-gate */ 39*7c478bd9Sstevel@tonic-gate 40*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 41*7c478bd9Sstevel@tonic-gate 42*7c478bd9Sstevel@tonic-gate #include <stdio.h> 43*7c478bd9Sstevel@tonic-gate 44*7c478bd9Sstevel@tonic-gate /* tr - transliterate data stream */ 45*7c478bd9Sstevel@tonic-gate int dflag = 0; 46*7c478bd9Sstevel@tonic-gate int sflag = 0; 47*7c478bd9Sstevel@tonic-gate int cflag = 0; 48*7c478bd9Sstevel@tonic-gate int save = 0; 49*7c478bd9Sstevel@tonic-gate char code[256]; 50*7c478bd9Sstevel@tonic-gate char squeez[256]; 51*7c478bd9Sstevel@tonic-gate char vect[256]; 52*7c478bd9Sstevel@tonic-gate struct string { int last, max; char *p; } string1, string2; 53*7c478bd9Sstevel@tonic-gate 54*7c478bd9Sstevel@tonic-gate main(argc,argv) 55*7c478bd9Sstevel@tonic-gate char **argv; 56*7c478bd9Sstevel@tonic-gate { 57*7c478bd9Sstevel@tonic-gate register i; 58*7c478bd9Sstevel@tonic-gate int j; 59*7c478bd9Sstevel@tonic-gate register c, d; 60*7c478bd9Sstevel@tonic-gate char *compl; 61*7c478bd9Sstevel@tonic-gate int lastd; 62*7c478bd9Sstevel@tonic-gate 63*7c478bd9Sstevel@tonic-gate string1.last = string2.last = 0; 64*7c478bd9Sstevel@tonic-gate string1.max = string2.max = 0; 65*7c478bd9Sstevel@tonic-gate string1.p = string2.p = ""; 66*7c478bd9Sstevel@tonic-gate 67*7c478bd9Sstevel@tonic-gate if(--argc>0) { 68*7c478bd9Sstevel@tonic-gate argv++; 69*7c478bd9Sstevel@tonic-gate if(*argv[0]=='-'&&argv[0][1]!=0) { 70*7c478bd9Sstevel@tonic-gate while(*++argv[0]) 71*7c478bd9Sstevel@tonic-gate switch(*argv[0]) { 72*7c478bd9Sstevel@tonic-gate case 'c': 73*7c478bd9Sstevel@tonic-gate cflag++; 74*7c478bd9Sstevel@tonic-gate continue; 75*7c478bd9Sstevel@tonic-gate case 'd': 76*7c478bd9Sstevel@tonic-gate dflag++; 77*7c478bd9Sstevel@tonic-gate continue; 78*7c478bd9Sstevel@tonic-gate case 's': 79*7c478bd9Sstevel@tonic-gate sflag++; 80*7c478bd9Sstevel@tonic-gate continue; 81*7c478bd9Sstevel@tonic-gate } 82*7c478bd9Sstevel@tonic-gate argc--; 83*7c478bd9Sstevel@tonic-gate argv++; 84*7c478bd9Sstevel@tonic-gate } 85*7c478bd9Sstevel@tonic-gate } 86*7c478bd9Sstevel@tonic-gate if(argc>0) string1.p = argv[0]; 87*7c478bd9Sstevel@tonic-gate if(argc>1) string2.p = argv[1]; 88*7c478bd9Sstevel@tonic-gate for(i=0; i<256; i++) 89*7c478bd9Sstevel@tonic-gate code[i] = vect[i] = 0; 90*7c478bd9Sstevel@tonic-gate if(cflag) { 91*7c478bd9Sstevel@tonic-gate while(c = next(&string1)) 92*7c478bd9Sstevel@tonic-gate vect[c&0377] = 1; 93*7c478bd9Sstevel@tonic-gate j = 0; 94*7c478bd9Sstevel@tonic-gate for(i=1; i<256; i++) 95*7c478bd9Sstevel@tonic-gate if(vect[i]==0) vect[j++] = i; 96*7c478bd9Sstevel@tonic-gate vect[j] = 0; 97*7c478bd9Sstevel@tonic-gate compl = vect; 98*7c478bd9Sstevel@tonic-gate } 99*7c478bd9Sstevel@tonic-gate for(i=0; i<256; i++) 100*7c478bd9Sstevel@tonic-gate squeez[i] = 0; 101*7c478bd9Sstevel@tonic-gate lastd = 0; 102*7c478bd9Sstevel@tonic-gate for(;;){ 103*7c478bd9Sstevel@tonic-gate if(cflag) c = *compl++; 104*7c478bd9Sstevel@tonic-gate else c = next(&string1); 105*7c478bd9Sstevel@tonic-gate if(c==0) break; 106*7c478bd9Sstevel@tonic-gate d = next(&string2); 107*7c478bd9Sstevel@tonic-gate if(d==0) d = lastd; 108*7c478bd9Sstevel@tonic-gate else lastd = d; 109*7c478bd9Sstevel@tonic-gate squeez[d&0377] = 1; 110*7c478bd9Sstevel@tonic-gate code[c&0377] = dflag?1:d; 111*7c478bd9Sstevel@tonic-gate } 112*7c478bd9Sstevel@tonic-gate while(d = next(&string2)) 113*7c478bd9Sstevel@tonic-gate squeez[d&0377] = 1; 114*7c478bd9Sstevel@tonic-gate squeez[0] = 1; 115*7c478bd9Sstevel@tonic-gate for(i=0;i<256;i++) { 116*7c478bd9Sstevel@tonic-gate if(code[i]==0) code[i] = i; 117*7c478bd9Sstevel@tonic-gate else if(dflag) code[i] = 0; 118*7c478bd9Sstevel@tonic-gate } 119*7c478bd9Sstevel@tonic-gate 120*7c478bd9Sstevel@tonic-gate clearerr(stdout); 121*7c478bd9Sstevel@tonic-gate while((c=getc(stdin)) != EOF ) { 122*7c478bd9Sstevel@tonic-gate if(c == 0) continue; 123*7c478bd9Sstevel@tonic-gate if(c = code[c&0377]&0377) 124*7c478bd9Sstevel@tonic-gate if(!sflag || c!=save || !squeez[c&0377]) { 125*7c478bd9Sstevel@tonic-gate (void)putchar(save = c); 126*7c478bd9Sstevel@tonic-gate if(ferror(stdout)) 127*7c478bd9Sstevel@tonic-gate exit(1); 128*7c478bd9Sstevel@tonic-gate } 129*7c478bd9Sstevel@tonic-gate } 130*7c478bd9Sstevel@tonic-gate exit(0); 131*7c478bd9Sstevel@tonic-gate /* NOTREACHED */ 132*7c478bd9Sstevel@tonic-gate } 133*7c478bd9Sstevel@tonic-gate 134*7c478bd9Sstevel@tonic-gate next(s) 135*7c478bd9Sstevel@tonic-gate struct string *s; 136*7c478bd9Sstevel@tonic-gate { 137*7c478bd9Sstevel@tonic-gate 138*7c478bd9Sstevel@tonic-gate again: 139*7c478bd9Sstevel@tonic-gate if(s->max) { 140*7c478bd9Sstevel@tonic-gate if(s->last++ < s->max) 141*7c478bd9Sstevel@tonic-gate return(s->last); 142*7c478bd9Sstevel@tonic-gate s->max = s->last = 0; 143*7c478bd9Sstevel@tonic-gate } 144*7c478bd9Sstevel@tonic-gate if(s->last && *s->p=='-') { 145*7c478bd9Sstevel@tonic-gate (void)nextc(s); 146*7c478bd9Sstevel@tonic-gate s->max = nextc(s); 147*7c478bd9Sstevel@tonic-gate if(s->max==0) { 148*7c478bd9Sstevel@tonic-gate s->p--; 149*7c478bd9Sstevel@tonic-gate return('-'); 150*7c478bd9Sstevel@tonic-gate } 151*7c478bd9Sstevel@tonic-gate if(s->max < s->last) { 152*7c478bd9Sstevel@tonic-gate s->last = s->max-1; 153*7c478bd9Sstevel@tonic-gate return('-'); 154*7c478bd9Sstevel@tonic-gate } 155*7c478bd9Sstevel@tonic-gate goto again; 156*7c478bd9Sstevel@tonic-gate } 157*7c478bd9Sstevel@tonic-gate return(s->last = nextc(s)); 158*7c478bd9Sstevel@tonic-gate } 159*7c478bd9Sstevel@tonic-gate 160*7c478bd9Sstevel@tonic-gate nextc(s) 161*7c478bd9Sstevel@tonic-gate struct string *s; 162*7c478bd9Sstevel@tonic-gate { 163*7c478bd9Sstevel@tonic-gate register c, i, n; 164*7c478bd9Sstevel@tonic-gate 165*7c478bd9Sstevel@tonic-gate c = *s->p++; 166*7c478bd9Sstevel@tonic-gate if(c=='\\') { 167*7c478bd9Sstevel@tonic-gate i = n = 0; 168*7c478bd9Sstevel@tonic-gate while(i<3 && (c = *s->p)>='0' && c<='7') { 169*7c478bd9Sstevel@tonic-gate n = n*8 + c - '0'; 170*7c478bd9Sstevel@tonic-gate i++; 171*7c478bd9Sstevel@tonic-gate s->p++; 172*7c478bd9Sstevel@tonic-gate } 173*7c478bd9Sstevel@tonic-gate if(i>0) c = n; 174*7c478bd9Sstevel@tonic-gate else c = *s->p++; 175*7c478bd9Sstevel@tonic-gate } 176*7c478bd9Sstevel@tonic-gate if(c==0) *--s->p = 0; 177*7c478bd9Sstevel@tonic-gate return(c&0377); 178*7c478bd9Sstevel@tonic-gate } 179