- Function
Find a substring.
- Header
- Declaration
char* __fastcall__ strstr (const char* str, const char* substr);- Description
strstrsearches for the first occurance of the stringsubstrwithinstr. If found, it returns a pointer to the copy, otherwise it returnsNULL.- Limits
- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
ISO 9899
- See also
- Example
None.