blob: 8e189d260f3eb5997063c73269ece2f839f912b6 (
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);
|