Implement RtlWideStringCompare() and RtlWideStringTokenize() routines
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-08-13 13:18:52 +02:00
parent ba1efee47e
commit 3f372f19e3
4 changed files with 151 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtklib/includes/librtl.h
* DESCRIPTION: Kernel mode runtime library
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTKLIB_LIBRTL_H
#define __XTKLIB_LIBRTL_H
#include "xtdefs.h"
#include "xttypes.h"
UINT64
RtlWideStringCompare(IN CONST PWCHAR String1,
IN CONST PWCHAR String2,
IN CONST ULONG Length);
PWCHAR
RtlWideStringTokenize(IN PWCHAR String,
IN CONST PWCHAR Delimiter,
IN OUT PWCHAR *SavePtr);
#endif /* __XTKLIB_LIBRTL_H */

View File

@@ -7,3 +7,4 @@
*/
#include "libhl.h"
#include "librtl.h"