blob: 6536ba83764d76dfdc4a053dd301c7e7a3943f1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -------------------------------------------
Copyright Mahrouss Logic
Purpose: Kernel Strings.
------------------------------------------- */
#pragma once
#include <DriverKit/KernelStd.h>
/// @brief DriverKit equivalent of POSIX's string.h.
DK_EXTERN size_t kernelStringLength(const char* str);
DK_EXTERN int kernelStringCopy(char* dst, const char* src, size_t len);
|