summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/ChangeLog5
-rw-r--r--lib/strchrnul.c31
-rw-r--r--lib/strchrnul.h28
-rw-r--r--m4/ChangeLog4
-rw-r--r--m4/strchrnul.m423
-rw-r--r--modules/strchrnul20
7 files changed, 116 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ce99b2628..afe2d8126d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
-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.
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 685049a965..92ee7d93a6 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,8 @@
+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.
diff --git a/lib/strchrnul.c b/lib/strchrnul.c
new file mode 100644
index 0000000000..694e24a0ab
--- /dev/null
+++ b/lib/strchrnul.c
@@ -0,0 +1,31 @@
+/* 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;
+}
diff --git a/lib/strchrnul.h b/lib/strchrnul.h
new file mode 100644
index 0000000000..f7589e990b
--- /dev/null
+++ b/lib/strchrnul.h
@@ -0,0 +1,28 @@
+/* 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
diff --git a/m4/ChangeLog b/m4/ChangeLog
index 1b46f78c92..e31bef8678 100644
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -1,3 +1,7 @@
+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,
diff --git a/m4/strchrnul.m4 b/m4/strchrnul.m4
new file mode 100644
index 0000000000..565e338d5c
--- /dev/null
+++ b/m4/strchrnul.m4
@@ -0,0 +1,23 @@
+# 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)
+])
diff --git a/modules/strchrnul b/modules/strchrnul
new file mode 100644
index 0000000000..b174523fbe
--- /dev/null
+++ b/modules/strchrnul
@@ -0,0 +1,20 @@
+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