-2003-06=10 Simon Josefsson <jas@extundo.com>
+2003-06-10 Simon Josefsson <jas@extundo.com>
+
+ * modules/strchrnul: New file.
+
+2003-06-10 Simon Josefsson <jas@extundo.com>
* modules/argp: New file.
+2003-06-10 Simon Josefsson <jas@extundo.com>
+
+ * strchrnul.h: New file.
+ * strchrnul.c: New file.
+
2003-06=10 Simon Josefsson <jas@extundo.com>
* argp.h: New file, from glibc.
--- /dev/null
+/* Searching in a string.
+ Copyright (C) 2003 Free Software Foundation, Inc.
+
+ 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 2, 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, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+/* Specification. */
+#include "strchrnul.h"
+
+/* Find the first occurrence of C in S or the final NUL byte. */
+char *
+strchrnul (s, c_in)
+ const char *s;
+ int c_in;
+{
+ while (*s && (*s != c_in))
+ s++;
+
+ return (char*) s;
+}
--- /dev/null
+/* Searching in a string.
+ Copyright (C) 2003 Free Software Foundation, Inc.
+
+ 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 2, 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, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+#if HAVE_STRCHRNUL
+
+/* Get strchrnul() declaration. */
+#include <string.h>
+
+#else
+
+/* Find the first occurrence of C in S or the final NUL byte. */
+extern char *strchrnul (const char *s, int c_in);
+
+#endif
+2003-06-10 Simon Josefsson <jas@extundo.com>
+
+ * strchrnul.m4: New file.
+
2003-06-07 Bruno Haible <bruno@clisp.org>
* fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
--- /dev/null
+# strchrnul.m4 serial 1
+dnl Copyright (C) 2003 Free Software Foundation, Inc.
+dnl This file is free software, distributed under the terms of the GNU
+dnl General Public License. As a special exception to the GNU General
+dnl Public License, this file may be distributed as part of a program
+dnl that contains a configuration script generated by Autoconf, under
+dnl the same distribution terms as the rest of that program.
+
+AC_DEFUN([gl_FUNC_STRCHRNUL],
+[
+ dnl Persuade glibc <string.h> to declare strchrnul().
+ AC_REQUIRE([AC_GNU_SOURCE])
+
+ AC_REPLACE_FUNCS(strchrnul)
+ if test $ac_cv_func_strchrnul = no; then
+ gl_PREREQ_STRCHRNUL
+ fi
+])
+
+# Prerequisites of lib/strchrnul.c.
+AC_DEFUN([gl_PREREQ_STRCHRNUL], [
+ AC_CHECK_HEADERS_ONCE(string.h)
+])
--- /dev/null
+Description:
+strchrnul(): Find the first occurrence of C in S or the final NUL byte.
+
+Files:
+lib/strchrnul.h
+lib/strchrnul.c
+m4/strchrnul.m4
+
+Depends-on:
+
+configure.ac:
+gl_FUNC_STRCHRNUL
+
+Makefile.am:
+
+Include:
+"strchrnul.h"
+
+Maintainer:
+FSF