Scans a string for the first occurrence of a specified substring.
#include <unilib.h>
unicode_t *unistr (
const unicode_t *as1,
const unicode_t *as2);
(IN) Points to the string to be scanned.
(IN) Points to the string to be located.
Returns one of the following values:
If the as2 parameter points to a zero length string, unistr returns the string pointed to by the as1 parameter.
The unistr function corresponds to the strstr function.