Bool StringSearch(char *searchString, int *linePos, int *charPos, Bool ignoreCase = TRUE)
Search for a string from the given position. If the search matches, the values of the linePos and charPos arguments will be set to the start of the matching string, and the function returns TRUE.
If there are no (more) matches, the functions returns FALSE.
If ignoreCase is TRUE, case is ignored, otherwise an exact match is required.
In this function, newlines in the hypertext are converted to spaces, increasing the chance of matching a phrase across newline boundaries.