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

Declared in "winternl.h". https://source.winehq.org/source/include/winternl.h

Implemented in "dlls/ntdll/rtlstr.c". https://source.winehq.org/source/dlls/ntdll/rtlstr.c

Debug channel "ntdll".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.