summaryrefslogtreecommitdiff
path: root/wctype
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-02-06 18:27:57 +0000
committerAndreas Jaeger <aj@suse.de>2001-02-06 18:27:57 +0000
commitbd7f30a9b76479a7652a3c2245f98bd04852bb8e (patch)
treee099132e3bcec14a88809f80f4449b613106a9a5 /wctype
parenteb8ea10ab211e5fc01bb7b37d862ee096eab3a4e (diff)
Update.
2001-02-06 Andreas Jaeger <aj@suse.de> * include/pthread.h: New file. * wctype/wctype.h: Move internal interfaces from here to... * include/wctype.h: ...here. * wcsmbs/wchar.h: Move __wcslen from here to... * include/wchar.h: ...here. * posix/sys/wait.h: Move __wait from here to... * include/sys/wait.h: ...here. * string/string.h: Move __ffs and __strerror_r from here to... * include/string.h: ...here. * stdlib/stdlib.h: Move __on_exit from here to... * include/stdlib.h: ...here. * libio/stdio.h: Move __vsnprintf from here to... * include/stdio.h: ...here.
Diffstat (limited to 'wctype')
-rw-r--r--wctype/wctype.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/wctype/wctype.h b/wctype/wctype.h
index a89eae069d..0ef675c0f9 100644
--- a/wctype/wctype.h
+++ b/wctype/wctype.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -175,12 +175,10 @@ extern int iswblank (wint_t __wc) __THROW;
/* Construct value that describes a class of wide characters identified
by the string argument PROPERTY. */
-extern wctype_t __wctype (__const char *__property) __THROW;
extern wctype_t wctype (__const char *__property) __THROW;
/* Determine whether the wide-character WC has the property described by
DESC. */
-extern int __iswctype (wint_t __wc, wctype_t __desc) __THROW;
extern int iswctype (wint_t __wc, wctype_t __desc) __THROW;
#if __GNUC__ >= 2 && defined __OPTIMIZE__
@@ -256,9 +254,6 @@ extern wint_t towlower (wint_t __wc) __THROW;
/* Converts an lowercase letter to the corresponding uppercase letter. */
extern wint_t towupper (wint_t __wc) __THROW;
-/* Map the wide character WC using the mapping described by DESC. */
-extern wint_t __towctrans (wint_t __wc, wctrans_t __desc) __THROW;
-
#if __GNUC__ >= 2 && defined __OPTIMIZE__
/* The tables are always organized in a way which allows direct access
for single byte characters. */