RtlPrefixString(3w)
NAME
RtlPrefixString (NTDLL.@)
SYNOPSIS
BOOLEAN RtlPrefixString ( const STRING* s1, const STRING* s2, BOOLEAN ignore_case )
DESCRIPTION
Determine if one string is a prefix of another.
PARAMS
s1 [In] Prefix to look for in s2.
s2 [In] String that may contain s1 as a prefix.
ignore_case [In] TRUE = Case insensitive, FALSE = Case sensitive.
RETURNS
TRUE if s2 contains s1 as a prefix, FALSE otherwise.
IMPLEMENTATION
Defined in "winternl.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/ntdll/rtlstr.c".
- Debug channel "ntdll".