Implementation of the strstri function, case-insensitive string search for narrow character strings. More...
Go to the source code of this file.
Namespaces | |
namespace | Helpers |
The namespace containing all the "helper" functions in the C++ code. | |
Functions | |
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(). | |
Implementation of the strstri function, case-insensitive string search for narrow character strings.
Function to search for one string in another in a case-insensitive way (otherwise this is identical to the standard C library function strstr()).
Definition in file strstri.cpp.