-------------------------------------------------------------------------------- Description: Try to find a substring Similar to Python's x in y --------------------------------------------------------------------------------
| 99 | // Similar to Python's x in y |
| 100 | // -------------------------------------------------------------------------------- |
| 101 | inline bool StringFind( const char* baseString, const char* searchString ) |
| 102 | { |
| 103 | std::string b( baseString ); |
| 104 | return ( b.find( searchString ) != std::string::npos ); |
| 105 | } |
| 106 | |
| 107 | // -------------------------------------------------------------------------------- |
| 108 | // Description: |
no outgoing calls
no test coverage detected