Scans a string for the first occurrence of a given substring.
#include <string.h>
char *Lstrstr (
const char *str,
const char *substr);
(IN) Points to a null-terminated string to scan.
(IN) Points to a null-terminated substring for which to search.
Returns a pointer to the located string, or a NULL pointer if the string is not found.
The Lstrstr function is a double-byte character interface. It locates the first occurrence in the string pointed to by str of the sequence of characters (excluding the terminating NULL character) in the string pointed to by substr.