This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

move __wcslen



Ok to commit?

Andreas

2001-02-06  Andreas Jaeger  <aj@suse.de>

	* wcsmbs/wchar.h: Move __wcslen from here to...
	* include/wchar.h: ...here.

============================================================
Index: include/wchar.h
--- include/wchar.h	2000/09/14 01:36:27	1.10
+++ include/wchar.h	2001/02/06 09:17:23
@@ -8,6 +8,7 @@
 extern int __wcsncasecmp (__const wchar_t *__s1, __const wchar_t *__s2,
 			  size_t __n)
      __attribute_pure__;
+extern size_t __wcslen (__const wchar_t *__s) __attribute_pure__;
 extern size_t __wcsnlen (__const wchar_t *__s, size_t __maxlen)
      __attribute_pure__;
 extern wint_t __btowc (int __c);
============================================================
Index: wcsmbs/wchar.h
--- wcsmbs/wchar.h	2001/01/25 08:42:14	1.44
+++ wcsmbs/wchar.h	2001/02/06 09:17:24
@@ -217,7 +217,6 @@
 			wchar_t **__restrict __ptr) __THROW;
 
 /* Return the number of wide characters in S.  */
-extern size_t __wcslen (__const wchar_t *__s) __THROW __attribute_pure__;
 extern size_t wcslen (__const wchar_t *__s) __THROW __attribute_pure__;
 
 #ifdef __USE_GNU

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]