Subversion Repositories Kolibri OS

Rev

Rev 4921 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4921 Rev 6099
Line 94... Line 94...
94
 
94
 
95
/*
95
/*
96
 * Find the first occurrence of find in s, ignore case.
96
 * Find the first occurrence of find in s, ignore case.
97
 */
97
 */
98
char *
98
char *
-
 
99
_DEFUN (strcasestr, (s, find),
99
strcasestr(s, find)
100
	_CONST char *s _AND
100
	const char *s, *find;
101
	_CONST char *find)
101
{
102
{
Line 102... Line 103...
102
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
103
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
103
 
104