os/ossrv/genericopenlibs/cstdlib/LCHAR/STRSTR.C
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
* FUNCTION
sl@0
    16
* <<strstr>>---find string segment
sl@0
    17
* INDEX
sl@0
    18
* strstr
sl@0
    19
* ANSI_SYNOPSIS
sl@0
    20
* #include <string.h>
sl@0
    21
* char *strstr(const char *<[s1]>, const char *<[s2]>);
sl@0
    22
* TRAD_SYNOPSIS
sl@0
    23
* #include <string.h>
sl@0
    24
* char *strstr(<[s1]>, <[s2]>)
sl@0
    25
* char *<[s1]>;
sl@0
    26
* char *<[s2]>;
sl@0
    27
* Locates the first occurence in the string pointed to by <[s1]> of
sl@0
    28
* the sequence of characters in the string pointed to by <[s2]>
sl@0
    29
* (excluding the terminating null  character).
sl@0
    30
* RETURNS
sl@0
    31
* Returns a pointer to the located string segment, or a null
sl@0
    32
* pointer if the string <[s2]> is not found. If <[s2]> points to
sl@0
    33
* a string with zero length, the <[s1]> is returned.
sl@0
    34
* PORTABILITY
sl@0
    35
* <<strstr>> is ANSI C.
sl@0
    36
* <<strstr>> requires no supporting OS subroutines.
sl@0
    37
* QUICKREF
sl@0
    38
* strstr ansi pure
sl@0
    39
* 
sl@0
    40
*
sl@0
    41
*/
sl@0
    42
sl@0
    43
sl@0
    44
sl@0
    45
#include <string.h>
sl@0
    46
sl@0
    47
/**
sl@0
    48
Find substring.
sl@0
    49
Scans string1 for the first occurrence of string2.
sl@0
    50
The search does not include terminating null-characters.
sl@0
    51
@return A pointer to the first occurrence of lookfor in searchee.
sl@0
    52
If lookfor is not found in searchee the function returns NULL.
sl@0
    53
@param searchee Null-terminated string to search. 
sl@0
    54
@param lookfor Null-terminated string containing the substring to search for.
sl@0
    55
*/
sl@0
    56
EXPORT_C char *
sl@0
    57
strstr (const char *searchee, const char *lookfor)
sl@0
    58
{
sl@0
    59
  if (*searchee == 0)
sl@0
    60
    {
sl@0
    61
      if (*lookfor)
sl@0
    62
	return (char *) NULL;
sl@0
    63
      return (char *) searchee;
sl@0
    64
    }
sl@0
    65
sl@0
    66
  while (*searchee)
sl@0
    67
    {
sl@0
    68
      size_t i;
sl@0
    69
      i = 0;
sl@0
    70
sl@0
    71
      for (;;)
sl@0
    72
	{
sl@0
    73
	  if (lookfor[i] == 0)
sl@0
    74
	    {
sl@0
    75
	      return (char *) searchee;
sl@0
    76
	    }
sl@0
    77
sl@0
    78
	  if (lookfor[i] != searchee[i])
sl@0
    79
	    {
sl@0
    80
	      break;
sl@0
    81
	    }
sl@0
    82
	  i++;
sl@0
    83
	}
sl@0
    84
      searchee++;
sl@0
    85
    }
sl@0
    86
sl@0
    87
  return (char *) NULL;
sl@0
    88
}