Xiqual 0.9.1

In file xitools/strfind.c:

char* strfind

(char* haystack, char* needle, int sense)

Looks for a string within another string.

Documentation

Looks for a string within another string. This is both a case-insensitive version of, and a wrapper around, strstr(). If sense is non-zero, strstr() will be called. If zero, an insensitive search will be used.
Parameters:
haystack - A string to look inside
needle - The string to look for in haystack
sense - Case-sensitivity (TRUE or FALSE)
Returns:
A pointer to the position in haystack where needle was found, or NULL
Author:
Ronny Bangsund
See Also:
strstr()

Alphabetic index



This page was generated with the help of DOC++.