blob: b2c0ce72b6d001c81b78b89add2899963fc950be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -------------------------------------------
Copyright Amlal El Mahrouss.
Purpose: DDK Strings.
------------------------------------------- */
#pragma once
#include <DriverKit/ddk.h>
/// @brief DDK equivalent of POSIX's string.h
/// @file str.h
DDK_EXTERN size_t kstrlen(const char* in);
DDK_EXTERN int kstrncpy(char* dst, const char* src, size_t len);
|