Scroll to navigation

StrRChrA(3w) Wine API StrRChrA(3w)

NAME

StrRChrA (SHLWAPI.@)

SYNOPSIS

LPSTR StrRChrA
(
LPCSTR lpszStr,
LPCSTR lpszEnd,
WORD ch
)
 

DESCRIPTION

Find the last occurrence of a character in string.
 

PARAMS

lpszStr [In] String to search in.
lpszEnd [In] Place to end search, or NULL to search until the end of lpszStr.
ch [In] Character to search for.
 

RETURNS

Success: A pointer to the last occurrence of ch in lpszStr before lpszEnd, or NULL if not found.
Failure: NULL, if any arguments are invalid.
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/string.c".
Debug channel "shell".
Oct 2012 Wine API