summaryrefslogtreecommitdiffhomepage
path: root/dev/libDDK/DriverKit/str.h
blob: 6409b1a75730b9eb655557dbd7a140fbbbc6872c (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);