[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]


wcsstr

Search for a wide character array within another.

Compatibility:

This function is compatible with the following targets:

ANSI

BeOS

EMB/RTOS

Mac OS

Palm OS

Win32


Prototype:
#include <wchar.h>
wchar_t * wcsstr(const wchar_t * str, 
  const wchar_t * pat);
Parameters:

Parameters for this function are:

str  
const wchar_t *  
The string to search  
pat  
const wchar_t *  
The string being searched for  

Remarks:

Performs the same task as strstr for a wide character type.

Return:

Returns a pointer to the first occurrence of s2 in s1 and returns a null pointer (NULL) if s2 cannot be found.

See Also:

"strstr"

"wcschr"


[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]

Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.

Last updated: August 16, 2000