Initial Release 4.0

Function : Character Manipulation
NLS_find - Finds the first instance of a character in a string, given a set of search characters.
----------------------------------------------------------------------------------------------------------

#include <nls.h>

NLS_STATUS LNPUBLIC NLS_find(
BYTE far * far *ppString,
WORD Len,
const BYTE far *pSetOfChars,
WORD ControlFlags,
NLS_PINFO pInfo);

Description :

Finds the first instance of a character in a string, given a set of search characters. Depending on the value of the ControlFlags argument, you can search for the first character in the string that IS in the set of search characters, or the first character in the string that IS NOT in the set.

Parameters :

See Also :

NLS_find_substr
----------------------------------------------------------------------------------------------------------