Design Pattern Examples
Overview of object-oriented design patterns
helpers/strstri.h
Go to the documentation of this file.
1
8
9#ifndef __STRSTRI_H__
10#define __STRSTRI_H__
11
12
21char* strstri( const char* s1, const char* s2);
22
23
24#endif // __STRSTRI_H__
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.c:35