summaryrefslogtreecommitdiffstats
path: root/sys/i386/include/ansi.h
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1994-04-04 21:11:12 +0000
committerwollman <wollman@FreeBSD.org>1994-04-04 21:11:12 +0000
commitb4d4ec15af099c3255c12641f3b8e6fafa4f1113 (patch)
treeefa3374791879e5f87a563cfeb4c8f2b7f3c62a8 /sys/i386/include/ansi.h
parent7d2bbe7dd6b9d257147f8e9aabce7584e29a498e (diff)
downloadFreeBSD-src-b4d4ec15af099c3255c12641f3b8e6fafa4f1113.zip
FreeBSD-src-b4d4ec15af099c3255c12641f3b8e6fafa4f1113.tar.gz
First pass at adding locale support. This code only deals with the LC_CTYPE
class of locale data, but could be extended to handle other locale classes, as well as message catalogues and other non-locale i18n support. I have left the old _ctype_ array in place, and moved the ctype.h header to octype.h, so that existing shared binaries will still be able to find and use it as they require. See /usr/src/share/locale for information on how to create new locale data files (eventually this procedure will be improved). I'd like to have a family of locale files for various countries, languages, and character sets, so please contribute some. This code was originally written by Paul Borman and contributed to 4.4; I did the integration, and have somewhat tested it. crt0.c probably ought to call setlocale() if it doesn't already, but I'd like for people to create some locale files and try things manually first before I make every program do this.
Diffstat (limited to 'sys/i386/include/ansi.h')
-rw-r--r--sys/i386/include/ansi.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/sys/i386/include/ansi.h b/sys/i386/include/ansi.h
index cdb3af8..1665aad 100644
--- a/sys/i386/include/ansi.h
+++ b/sys/i386/include/ansi.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)ansi.h 7.1 (Berkeley) 3/9/91
- * $Id$
+ * $Id: ansi.h,v 1.2 1993/10/16 14:39:05 rgrimes Exp $
*/
#ifndef _ANSI_H_
@@ -53,6 +53,23 @@
#define _SIZE_T_ unsigned int /* sizeof() */
#define _TIME_T_ long /* time() */
#define _VA_LIST_ char * /* va_list */
-#define _WCHAR_T_ unsigned short /* wchar_t */
+
+/*
+ * Runes (wchar_t) is declared to be an ``int'' instead of the more natural
+ * ``unsigned long'' or ``long''. Two things are happening here. It is not
+ * unsigned so that EOF (-1) can be naturally assigned to it and used. Also,
+ * it looks like 10646 will be a 31 bit standard. This means that if your
+ * ints cannot hold 32 bits, you will be in trouble. The reason an int was
+ * chosen over a long is that the is*() and to*() routines take ints (says
+ * ANSI C), but they use _RUNE_T_ instead of int. By changing it here, you
+ * lose a bit of ANSI conformance, but your programs will still work.
+ *
+ * Note that _WCHAR_T_ and _RUNE_T_ must be of the same type. When wchar_t
+ * and rune_t are typedef'd, _WCHAR_T_ will be undef'd, but _RUNE_T remains
+ * defined for ctype.h.
+ */
+#define _BSD_WCHAR_T_ int /* wchar_t */
+#define _BSD_RUNE_T_ int /* rune_t */
+
#endif /* _ANSI_H_ */
OpenPOWER on IntegriCloud