xref: /titanic_41/usr/src/cmd/sgs/lex/common/allprint.c (revision 6f45ec7b0b964c3be967c4880e8867ac1e7763a5)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*	Copyright (c) 1989 AT&T	*/
28 /*	  All Rights Reserved  	*/
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <sys/euc.h>
35 #include <ctype.h>
36 #include <widec.h>
37 #include <wctype.h>
38 
39 #pragma weak yyout
40 extern FILE *yyout;
41 
42 #ifndef JLSLEX
43 #define	CHR    char
44 #endif
45 
46 #ifdef WOPTION
47 #define	CHR	wchar_t
48 #define	sprint	sprint_w
49 #endif
50 
51 #ifdef EOPTION
52 #define	CHR	wchar_t
53 #endif
54 
55 void
56 allprint(CHR c)
57 {
58 	switch (c) {
59 	case '\n':
60 		fprintf(yyout, "\\n");
61 		break;
62 	case '\t':
63 		fprintf(yyout, "\\t");
64 		break;
65 	case '\b':
66 		fprintf(yyout, "\\b");
67 		break;
68 	case ' ':
69 		fprintf(yyout, "\\_");
70 		break;
71 	default:
72 		if (!iswprint(c))
73 		    fprintf(yyout, "\\x%-2x", c);
74 		else
75 		    putwc(c, yyout);
76 		break;
77 	}
78 }
79 
80 void
81 sprint(s)
82 CHR *s;
83 {
84 	while (*s)
85 		allprint(*s++);
86 }
87