xref: /freebsd/contrib/tcsh/tc.nls.h (revision 9122aeeaa60ee2a1381ea935d749194b32940e7a)
123338178SMark Peek /*
223338178SMark Peek  * tc.nls.h: NLS support
323338178SMark Peek  *
423338178SMark Peek  */
523338178SMark Peek /*-
623338178SMark Peek  * Copyright (c) 1980, 1991 The Regents of the University of California.
723338178SMark Peek  * All rights reserved.
823338178SMark Peek  *
923338178SMark Peek  * Redistribution and use in source and binary forms, with or without
1023338178SMark Peek  * modification, are permitted provided that the following conditions
1123338178SMark Peek  * are met:
1223338178SMark Peek  * 1. Redistributions of source code must retain the above copyright
1323338178SMark Peek  *    notice, this list of conditions and the following disclaimer.
1423338178SMark Peek  * 2. Redistributions in binary form must reproduce the above copyright
1523338178SMark Peek  *    notice, this list of conditions and the following disclaimer in the
1623338178SMark Peek  *    documentation and/or other materials provided with the distribution.
1723338178SMark Peek  * 3. Neither the name of the University nor the names of its contributors
1823338178SMark Peek  *    may be used to endorse or promote products derived from this software
1923338178SMark Peek  *    without specific prior written permission.
2023338178SMark Peek  *
2123338178SMark Peek  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2223338178SMark Peek  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2323338178SMark Peek  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2423338178SMark Peek  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2523338178SMark Peek  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2623338178SMark Peek  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2723338178SMark Peek  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2823338178SMark Peek  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2923338178SMark Peek  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3023338178SMark Peek  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3123338178SMark Peek  * SUCH DAMAGE.
3223338178SMark Peek  */
3323338178SMark Peek #ifndef _h_tc_nls
3423338178SMark Peek #define _h_tc_nls
3523338178SMark Peek 
3623338178SMark Peek #ifdef WIDE_STRINGS
3745e5710bSMark Peek extern int NLSWidth(Char);
3845e5710bSMark Peek extern int NLSStringWidth (const Char *);
3923338178SMark Peek #else
4023338178SMark Peek # define NLSStringWidth(s) Strlen(s)
4123338178SMark Peek # define NLSWidth(c) 1
4223338178SMark Peek #endif
4323338178SMark Peek 
4445e5710bSMark Peek extern Char *NLSChangeCase (const Char *, int);
45*19d2e3deSDmitry Chagin extern int NLSClassify (Char, int, int);
4623338178SMark Peek 
4723338178SMark Peek #define NLSCLASS_CTRL		(-1)
4823338178SMark Peek #define NLSCLASS_TAB		(-2)
4923338178SMark Peek #define NLSCLASS_NL		(-3)
5023338178SMark Peek #define NLSCLASS_ILLEGAL	(-4)
5123338178SMark Peek #define NLSCLASS_ILLEGAL2	(-5)
5223338178SMark Peek #define NLSCLASS_ILLEGAL3	(-6)
5323338178SMark Peek #define NLSCLASS_ILLEGAL4	(-7)
54*19d2e3deSDmitry Chagin #define NLSCLASS_ILLEGAL5	(-8)
5523338178SMark Peek 
5623338178SMark Peek #define NLSCLASS_ILLEGAL_SIZE(x) (-(x) - (-(NLSCLASS_ILLEGAL) - 1))
5723338178SMark Peek 
5823338178SMark Peek #endif
59