summaryrefslogtreecommitdiffstats
path: root/newlib/libc/string
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string')
-rw-r--r--newlib/libc/string/Makefile.am2
-rw-r--r--newlib/libc/string/strings.tex4
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/libc/string/Makefile.am b/newlib/libc/string/Makefile.am
index e73bfdccd..ba49af850 100644
--- a/newlib/libc/string/Makefile.am
+++ b/newlib/libc/string/Makefile.am
@@ -143,7 +143,7 @@ wcsncmp.def wcsncpy.def wcsnlen.def wcspbrk.def \
wcsrchr.def wcsspn.def wcsstr.def wcstok.def \
wcswidth.def wcsxfrm.def wcwidth.def wmemchr.def \
wmemcmp.def wmemcpy.def wmemmove.def wmemset.def \
-memmem.def memrchr.def rawmemchr.def
+memmem.def memrchr.def rawmemchr.def strchrnul.def
SUFFIXES = .def
diff --git a/newlib/libc/string/strings.tex b/newlib/libc/string/strings.tex
index 9dfc7990a..83b7c6af6 100644
--- a/newlib/libc/string/strings.tex
+++ b/newlib/libc/string/strings.tex
@@ -27,6 +27,7 @@ managing areas of memory. The corresponding declarations are in
* strcasestr:: Find string segment ignoring case
* strcat:: Concatenate strings
* strchr:: Search for character in string
+* strchrnul:: Search for character in string
* strcmp:: Character string compare
* strcoll:: Locale-specific character string compare
* strcpy:: Copy string
@@ -118,6 +119,9 @@ managing areas of memory. The corresponding declarations are in
@include string/strchr.def
@page
+@include string/strchrnul.def
+
+@page
@include string/strcmp.def
@page