Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Export C version of classification and conversion ta...



details:   https://anonhg.NetBSD.org/src/rev/683e0220c4e6
branches:  trunk
changeset: 786100:683e0220c4e6
user:      joerg <joerg%NetBSD.org@localhost>
date:      Mon Apr 15 11:01:40 2013 +0000

description:
Export C version of classification and conversion table as well.

diffstat:

 sys/sys/ctype_bits.h |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r 5763659dd801 -r 683e0220c4e6 sys/sys/ctype_bits.h
--- a/sys/sys/ctype_bits.h      Mon Apr 15 09:21:05 2013 +0000
+++ b/sys/sys/ctype_bits.h      Mon Apr 15 11:01:40 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ctype_bits.h,v 1.3 2013/04/13 10:21:21 joerg Exp $ */
+/* $NetBSD: ctype_bits.h,v 1.4 2013/04/15 11:01:40 joerg Exp $ */
 
 /*
  * Copyright (c) 1989 The Regents of the University of California.
@@ -59,4 +59,8 @@
 extern const short     *_tolower_tab_;
 extern const short     *_toupper_tab_;
 
+extern const unsigned short _C_ctype_tab_[];
+extern const short _C_toupper_tab_[];
+extern const short _C_tolower_tab_[];
+
 #endif /* !_SYS_CTYPE_BITS_H_ */



Home | Main Index | Thread Index | Old Index