Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/strstri.h
Go to the documentation of this file.
1
8
9#ifndef __STRSTRI_H__
10#define __STRSTRI_H__
11
12namespace Helpers
13{
14
23 char* strstri(
24 const char* s1,
25 const char* s2);
26
27} // end namespace
28
29#endif // __STRSTRI_H__
The namespace containing all the "helper" functions in the C++ code.
char * strstri(const char *s1, const char *s2)
Do case-insensitive search for string 2 (s2) in string 1 (s1). Similar to the C library's strstr().
Definition: strstri.cpp:35