diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2024-07-28 16:11:46 +0000 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2024-07-28 16:11:46 +0000 |
| commit | c4023005e029ae092dad2689564c490580dd5c28 (patch) | |
| tree | 3080ba07a6b552bf3d7591574cf69b2a3c8fd0fd /DDK/KernelString.h | |
| parent | 8c8822fff78f9ff9cd640271da9b3634c4c2f97f (diff) | |
| parent | 4db57a2d646b1538783a0675b38bada7a0f903ae (diff) | |
Merged in MHR-36 (pull request #17)
MHR-36
Diffstat (limited to 'DDK/KernelString.h')
| -rw-r--r-- | DDK/KernelString.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/DDK/KernelString.h b/DDK/KernelString.h index be2a1037..dd6fdce6 100644 --- a/DDK/KernelString.h +++ b/DDK/KernelString.h @@ -1,8 +1,8 @@ /* ------------------------------------------- - Copyright Zeta Electronics Corporation + Copyright ZKA Technologies - Purpose: Kernel Strings. + Purpose: DDK Strings. ------------------------------------------- */ @@ -10,7 +10,8 @@ #include <DDK/KernelStd.h> -/// @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); |
