blob: 5e55aa59b75af9e1e1ff854648d7d476607d0d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -------------------------------------------
Copyright ZKA Web Services Co.
Purpose: DDK Strings.
------------------------------------------- */
#pragma once
#include <ddk/ddk.h>
/// @brief DDK equivalent of POSIX's string.h
/// @file KernelString.h
DK_EXTERN size_t KernelStringLength(const char* in);
DK_EXTERN int KernelStringCopy(char* dst, const char* src, size_t len);
|