xref: /386bsd/usr/X386/include/X11/Xmu/CharSet.h (revision a2142627)
1 /* $XConsortium: CharSet.h,v 1.4 91/07/22 23:45:26 converse Exp $
2  *
3  * Copyright 1988 by the Massachusetts Institute of Technology
4  *
5  * Permission to use, copy, modify, and distribute this software and its
6  * documentation for any purpose and without fee is hereby granted, provided
7  * that the above copyright notice appear in all copies and that both that
8  * copyright notice and this permission notice appear in supporting
9  * documentation, and that the name of M.I.T. not be used in advertising
10  * or publicity pertaining to distribution of the software without specific,
11  * written prior permission. M.I.T. makes no representations about the
12  * suitability of this software for any purpose.  It is provided "as is"
13  * without express or implied warranty.
14  *
15  * The X Window System is a Trademark of MIT.
16  *
17  * The interfaces described by this header file are for miscellaneous utilities
18  * and are not part of the Xlib standard.
19  */
20 
21 #ifndef _XMU_CHARSET_H_
22 #define _XMU_CHARSET_H_
23 
24 #include <X11/Xfuncproto.h>
25 
26 _XFUNCPROTOBEGIN
27 
28 extern void XmuCopyISOLatin1Lowered(
29 #if NeedFunctionPrototypes
30     char *		/* dst_return */,
31     _Xconst char *	/* src */
32 #endif
33 );
34 
35 extern void XmuCopyISOLatin1Uppered(
36 #if NeedFunctionPrototypes
37     char *		/* dst_return */,
38     _Xconst char *	/* src */
39 #endif
40 );
41 
42 extern int XmuCompareISOLatin1(
43 #if NeedFunctionPrototypes
44     _Xconst char *	/* first */,
45     _Xconst char *	/* second */
46 #endif
47 );
48 
49 _XFUNCPROTOEND
50 
51 #endif /* _XMU_CHARSET_H_ */
52