1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Add performance tests for strstr and strcasestr.

This commit is contained in:
Ulrich Drepper
2010-07-23 22:27:53 -07:00
parent b8934257ec
commit dbc676d4ff
6 changed files with 407 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/* Return the offset of one string within another.
Copyright (C) 1994, 1996-2000, 2004, 2008, 2009
Copyright (C) 1994, 1996-2000, 2004, 2008, 2009, 2010
Free Software Foundation, Inc.
This file is part of the GNU C Library.
@@ -103,4 +103,6 @@ STRCASESTR (const char *haystack_start, const char *needle_start)
#undef LONG_NEEDLE_THRESHOLD
#ifndef NO_ALIAS
weak_alias (__strcasestr, strcasestr)
#endif