From fbda91b119b7673a4d448f0dce31766eaa65112e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 4 Oct 1999 07:30:05 +0000 Subject: Update. 1999-10-04 Ulrich Drepper * include/string.h: Add __memrchr declaration. * string/string.h: Moce __memrchr declaration to include/string.h. 1999-10-03 Ulrich Drepper * string/Makefile (routines): Add memrchr. * sysdeps/generic/memrchr.c: Don't undef memchr, undef memrchr. Correct order of tests for matching bytes. * string/tester.c: Add tests for memrchr. * sysdeps/i386/i486/bits/string.h (__memrchr): Correct implementation. Start from the last character and take decrement not increment into account for correction in return line. Add memrchr alias. * sysdeps/i386/bits/string.h: Likewise. --- include/string.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/string.h b/include/string.h index 4d610bab62..4cd64fb226 100644 --- a/include/string.h +++ b/include/string.h @@ -20,4 +20,6 @@ extern __ptr_t __rawmemchr __P ((__const __ptr_t __s, int __c)); extern char *__strchrnul __P ((__const char *__s, int __c)); +extern __ptr_t __memrchr __P ((__const __ptr_t __s, int __c, size_t __n)); + #endif -- cgit v1.2.3