changeset 14281:cae17a11c789

New module 'wcslen'. * modules/wcslen: New file. * lib/wchar.in.h (wcslen): New declaration. * lib/wcslen.c: New file. * lib/wcslen-impl.h: New file, from libutf8 with modifications. * m4/wcslen.m4: New file. * m4/wchar_h.m4 (gl_WCHAR_H): Test whether wcslen is declared. (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSLEN, HAVE_WCSLEN. * modules/wchar (Makefile.am): Substitute GNULIB_WCSLEN, HAVE_WCSLEN. * tests/test-wchar-c++.cc: Test the declaration of wcslen. * doc/posix-functions/wcslen.texi: Mention the new module.
author Bruno Haible <bruno@clisp.org>
date Sat, 05 Feb 2011 13:36:58 +0100
parents ac540ec36bef
children 3e1169cfa252
files ChangeLog doc/posix-functions/wcslen.texi lib/wchar.in.h lib/wcslen-impl.h lib/wcslen.c m4/wchar_h.m4 m4/wcslen.m4 modules/wchar modules/wcslen tests/test-wchar-c++.cc
diffstat 10 files changed, 138 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Feb 05 13:28:21 2011 +0100
+++ b/ChangeLog	Sat Feb 05 13:36:58 2011 +0100
@@ -1,3 +1,17 @@
+2011-02-05  Bruno Haible  <bruno@clisp.org>
+
+	New module 'wcslen'.
+	* modules/wcslen: New file.
+	* lib/wchar.in.h (wcslen): New declaration.
+	* lib/wcslen.c: New file.
+	* lib/wcslen-impl.h: New file, from libutf8 with modifications.
+	* m4/wcslen.m4: New file.
+	* m4/wchar_h.m4 (gl_WCHAR_H): Test whether wcslen is declared.
+	(gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSLEN, HAVE_WCSLEN.
+	* modules/wchar (Makefile.am): Substitute GNULIB_WCSLEN, HAVE_WCSLEN.
+	* tests/test-wchar-c++.cc: Test the declaration of wcslen.
+	* doc/posix-functions/wcslen.texi: Mention the new module.
+
 2011-02-05  Bruno Haible  <bruno@clisp.org>
 
 	New module 'wmemset'.
--- a/doc/posix-functions/wcslen.texi	Sat Feb 05 13:28:21 2011 +0100
+++ b/doc/posix-functions/wcslen.texi	Sat Feb 05 13:36:58 2011 +0100
@@ -4,18 +4,18 @@
 
 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcslen.html}
 
-Gnulib module: ---
+Gnulib module: wcslen
 
 Portability problems fixed by Gnulib:
 @itemize
+@item
+This function is missing on some platforms:
+IRIX 5.3, Solaris 2.5.1.
 @end itemize
 
 Portability problems not fixed by Gnulib:
 @itemize
 @item
-This function is missing on some platforms:
-IRIX 5.3, Solaris 2.5.1.
-@item
 On AIX and Windows platforms, @code{wchar_t} is a 16-bit type and therefore cannot
 accommodate all Unicode characters.
 @end itemize
--- a/lib/wchar.in.h	Sat Feb 05 13:28:21 2011 +0100
+++ b/lib/wchar.in.h	Sat Feb 05 13:36:58 2011 +0100
@@ -517,6 +517,22 @@
 #endif
 
 
+/* Return the number of wide characters in S.  */
+#if @GNULIB_WCSLEN@
+# if !@HAVE_WCSLEN@
+_GL_FUNCDECL_SYS (wcslen, size_t, (const wchar_t *s));
+# endif
+_GL_CXXALIAS_SYS (wcslen, size_t, (const wchar_t *s));
+_GL_CXXALIASWARN (wcslen);
+#elif defined GNULIB_POSIXCHECK
+# undef wcslen
+# if HAVE_RAW_DECL_WCSLEN
+_GL_WARN_ON_USE (wcslen, "wcslen is unportable - "
+                 "use gnulib module wcslen for portability");
+# endif
+#endif
+
+
 #endif /* _GL_WCHAR_H */
 #endif /* _GL_WCHAR_H */
 #endif
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/wcslen-impl.h	Sat Feb 05 13:36:58 2011 +0100
@@ -0,0 +1,26 @@
+/* Determine the length of a wide string.
+   Copyright (C) 1999, 2011 Free Software Foundation, Inc.
+   Written by Bruno Haible <bruno@clisp.org>, 1999.
+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+size_t
+wcslen (const wchar_t *s)
+{
+  const wchar_t *ptr;
+
+  for (ptr = s; *ptr != (wchar_t)'\0'; ptr++)
+    ;
+  return ptr - s;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/wcslen.c	Sat Feb 05 13:36:58 2011 +0100
@@ -0,0 +1,23 @@
+/* Determine the length of a wide string.
+   Copyright (C) 2011 Free Software Foundation, Inc.
+   Written by Bruno Haible <bruno@clisp.org>, 2011.
+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#include <config.h>
+
+/* Specification.  */
+#include <wchar.h>
+
+#include "wcslen-impl.h"
--- a/m4/wchar_h.m4	Sat Feb 05 13:28:21 2011 +0100
+++ b/m4/wchar_h.m4	Sat Feb 05 13:36:58 2011 +0100
@@ -51,6 +51,7 @@
     ]],
     [btowc wctob mbsinit mbrtowc mbrlen mbsrtowcs mbsnrtowcs wcrtomb
      wcsrtombs wcsnrtombs wcwidth wmemchr wmemcmp wmemcpy wmemmove wmemset
+     wcslen
     ])
 ])
 
@@ -150,6 +151,7 @@
   GNULIB_WMEMCPY=0;    AC_SUBST([GNULIB_WMEMCPY])
   GNULIB_WMEMMOVE=0;   AC_SUBST([GNULIB_WMEMMOVE])
   GNULIB_WMEMSET=0;    AC_SUBST([GNULIB_WMEMSET])
+  GNULIB_WCSLEN=0;     AC_SUBST([GNULIB_WCSLEN])
   dnl Assume proper GNU behavior unless another module says otherwise.
   HAVE_BTOWC=1;         AC_SUBST([HAVE_BTOWC])
   HAVE_MBSINIT=1;       AC_SUBST([HAVE_MBSINIT])
@@ -165,6 +167,7 @@
   HAVE_WMEMCPY=1;       AC_SUBST([HAVE_WMEMCPY])
   HAVE_WMEMMOVE=1;      AC_SUBST([HAVE_WMEMMOVE])
   HAVE_WMEMSET=1;       AC_SUBST([HAVE_WMEMSET])
+  HAVE_WCSLEN=1;        AC_SUBST([HAVE_WCSLEN])
   HAVE_DECL_WCTOB=1;    AC_SUBST([HAVE_DECL_WCTOB])
   HAVE_DECL_WCWIDTH=1;  AC_SUBST([HAVE_DECL_WCWIDTH])
   REPLACE_MBSTATE_T=0;  AC_SUBST([REPLACE_MBSTATE_T])
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m4/wcslen.m4	Sat Feb 05 13:36:58 2011 +0100
@@ -0,0 +1,15 @@
+# wcslen.m4 serial 1
+dnl Copyright (C) 2011 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+AC_DEFUN([gl_FUNC_WCSLEN],
+[
+  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+  AC_CHECK_FUNCS_ONCE([wcslen])
+  if test $ac_cv_func_wcslen = no; then
+    HAVE_WCSLEN=0
+    AC_LIBOBJ([wcslen])
+  fi
+])
--- a/modules/wchar	Sat Feb 05 13:28:21 2011 +0100
+++ b/modules/wchar	Sat Feb 05 13:36:58 2011 +0100
@@ -46,6 +46,7 @@
 	      -e 's|@''GNULIB_WMEMCPY''@|$(GNULIB_WMEMCPY)|g' \
 	      -e 's|@''GNULIB_WMEMMOVE''@|$(GNULIB_WMEMMOVE)|g' \
 	      -e 's|@''GNULIB_WMEMSET''@|$(GNULIB_WMEMSET)|g' \
+	      -e 's|@''GNULIB_WCSLEN''@|$(GNULIB_WCSLEN)|g' \
 	      -e 's|@''HAVE_WINT_T''@|$(HAVE_WINT_T)|g' \
 	      -e 's|@''HAVE_BTOWC''@|$(HAVE_BTOWC)|g' \
 	      -e 's|@''HAVE_MBSINIT''@|$(HAVE_MBSINIT)|g' \
@@ -61,6 +62,7 @@
 	      -e 's|@''HAVE_WMEMCPY''@|$(HAVE_WMEMCPY)|g' \
 	      -e 's|@''HAVE_WMEMMOVE''@|$(HAVE_WMEMMOVE)|g' \
 	      -e 's|@''HAVE_WMEMSET''@|$(HAVE_WMEMSET)|g' \
+	      -e 's|@''HAVE_WCSLEN''@|$(HAVE_WCSLEN)|g' \
 	      -e 's|@''HAVE_DECL_WCTOB''@|$(HAVE_DECL_WCTOB)|g' \
 	      -e 's|@''HAVE_DECL_WCWIDTH''@|$(HAVE_DECL_WCWIDTH)|g' \
 	      -e 's|@''REPLACE_MBSTATE_T''@|$(REPLACE_MBSTATE_T)|g' \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/modules/wcslen	Sat Feb 05 13:36:58 2011 +0100
@@ -0,0 +1,31 @@
+Description:
+wcslen() function: determine the length of a wide string.
+
+Status:
+obsolete
+
+Notice:
+This module is obsolete.
+
+Files:
+lib/wcslen.c
+lib/wcslen-impl.h
+m4/wcslen.m4
+
+Depends-on:
+wchar
+
+configure.ac:
+gl_FUNC_WCSLEN
+gl_WCHAR_MODULE_INDICATOR([wcslen])
+
+Makefile.am:
+
+Include:
+<wchar.h>
+
+License:
+LGPL
+
+Maintainer:
+Bruno Haible
--- a/tests/test-wchar-c++.cc	Sat Feb 05 13:28:21 2011 +0100
+++ b/tests/test-wchar-c++.cc	Sat Feb 05 13:36:58 2011 +0100
@@ -100,6 +100,10 @@
                  (wchar_t *, wchar_t, size_t));
 #endif
 
+#if GNULIB_TEST_WCSLEN
+SIGNATURE_CHECK (GNULIB_NAMESPACE::wcslen, size_t, (const wchar_t *));
+#endif
+
 
 int
 main ()