unichr
Finds the first occurrence of a given character in a specified string
#include <unicode.h>
N_EXTERN_LIBRARY(punicode) unichr (
const unicode N_FAR *s,
unicode c);
uses netwin32
Function unichr
(s : const unicode;
c : unicode
) : punicode;
The NULL terminator is part of the string. For example, unichr(string,0) returns a pointer to the terminating NULL character of string.
unichr corresponds to the C strchr function.
For sample code, see Section 3.12, Example: unichr.