diff options
Diffstat (limited to 'src/libDDK/DriverKit/str.h')
| -rw-r--r-- | src/libDDK/DriverKit/str.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libDDK/DriverKit/str.h b/src/libDDK/DriverKit/str.h new file mode 100644 index 00000000..6409b1a7 --- /dev/null +++ b/src/libDDK/DriverKit/str.h @@ -0,0 +1,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); |
