lib: remove unused libfru & libfrureg
[unleashed.git] / include / euc.h
blobae2f6883fd30f0249a7ddf372507b0237d1f8c2e
1 /*
2 * CDDL HEADER START
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.
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.
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]
20 * CDDL HEADER END
23 * Copyright 2014 Garrett D'Amore <garrett@damore.org>
25 /* Copyright (c) 1988 AT&T */
26 /* All Rights Reserved */
29 #ifndef _EUC_H
30 #define _EUC_H
32 #include <sys/euc.h>
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
38 extern int csetcol(int n); /* Returns # of columns for codeset n. */
39 extern int csetlen(int n); /* Returns # of bytes excluding SSx. */
40 extern int euclen(const unsigned char *s);
41 extern int euccol(const unsigned char *s);
42 extern int eucscol(const unsigned char *str);
44 /* Returns code set number for the first byte of an EUC char. */
45 #define csetno(c) \
46 (((c)&0x80)?(((c)&0xff) == SS2)?2:((((c)&0xff) == SS3)?3:1):0)
49 * Copied from _wchar.h of SVR4
51 #define multibyte (__ctype[520] > 1)
52 #define eucw1 __ctype[514]
53 #define eucw2 __ctype[515]
54 #define eucw3 __ctype[516]
55 #define scrw1 __ctype[517]
56 #define scrw2 __ctype[518]
57 #define scrw3 __ctype[519]
59 #ifdef __cplusplus
61 #endif
63 #endif /* _EUC_H */