CharNext

  LPTSTR CharNext(lpszCurrentChar)    
  LPCTSTR lpszCurrentChar; /* address of current character */

The CharNext function moves to the next character in a string.

Parameters

lpszCurrentChar

Points to a character in a null-terminated string.

Return Value

The return value points to the next character in the string, or to the null character at the end of the string.

Comments

The CharNext function may be used as either a wide-character function (where text arguments must use Unicode) or an ANSI function (where text arguments must use characters from the Windows 3.x character set installed).

See Also

CharPrev