From 63dd09a8c91fcf1f022506ffd9fcf02dcb61818b Mon Sep 17 00:00:00 2001 From: espie <> Date: Mon, 8 Aug 2005 05:53:01 +0000 Subject: activate LC_CTYPE for 8 bits locale. Make sure tolower/toupper use the whole 8 bits. okay deraadt@ thanks to everyone who tested --- src/lib/libc/include/ctype_private.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/lib/libc/include/ctype_private.h (limited to 'src/lib/libc/include') diff --git a/src/lib/libc/include/ctype_private.h b/src/lib/libc/include/ctype_private.h new file mode 100644 index 0000000000..39cc792ea4 --- /dev/null +++ b/src/lib/libc/include/ctype_private.h @@ -0,0 +1,7 @@ +/* $OpenBSD: ctype_private.h,v 1.1 2005/08/08 05:53:00 espie Exp $ */ +/* Written by Marc Espie, public domain */ +#define CTYPE_NUM_CHARS 256 +extern const char _C_ctype_[]; +extern const short _C_toupper_[]; +extern const short _C_tolower_[]; + -- cgit v1.2.3-55-g6feb