From a7c741c93cb0a53aea686eb2f342f2464bc12c14 Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Wed, 3 Jul 2024 18:20:35 +0200 Subject: COMMIT-07-03-2024-MHR-36 IMP: DDK specification and implementation done. - Kernel calls I/O support for DDK. - System calls I/O support for DDK. - Add Allocation routines for DDK. - Add Helloconf driver. - One generic device. IMPRV: - GPU driver is now C++ based. - Fixed icon path inside makefiles. Signed-off-by: Amlal EL Mahrouss --- DDK/KernelString.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'DDK/KernelString.h') diff --git a/DDK/KernelString.h b/DDK/KernelString.h index be2a1037..d3608320 100644 --- a/DDK/KernelString.h +++ b/DDK/KernelString.h @@ -10,7 +10,8 @@ #include -/// @brief DDK equivalent of POSIX's string.h. +/// @brief DDK equivalent of POSIX's string.h +/// @file kernelString.h -DK_EXTERN size_t kernelStringLength(const char* str); +DK_EXTERN size_t kernelStringLength(const char* in); DK_EXTERN int kernelStringCopy(char* dst, const char* src, size_t len); -- cgit v1.2.3