RtlPrefixString.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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 "dlls/ntdll/rtlstr.c".

Debug channel "ntdll".