Design Pattern Examples
Overview of object-oriented design patterns
wcsstri.h
Go to the documentation of this file.
1
5
6#ifndef __WCSSTRIW_H__
7#define __WCSSTRIW_H__
8
9namespace Helpers
10{
19 wchar_t* wcsstri(
20 const wchar_t* s1,
21 const wchar_t* s2);
22
23} // end namespace
24
25#endif // __WCSSTRIW_H__
The namespace containing all the "helper" functions in the C++ code.
wchar_t * wcsstri(const wchar_t *s1, const wchar_t *s2)
Do case-insensitive search for string 2 (s2) in string 1 (s1). Similar to the C library's wcsstr().
Definition: wcsstri.cpp:30