summaryrefslogtreecommitdiffhomepage
path: root/DDKit/KernelString.h
blob: 07d33c7e88e10a53ba96c5ec0a1f04c5f9a95f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* -------------------------------------------

	Copyright ZKA Technologies

	Purpose: DDK Strings.

------------------------------------------- */

#pragma once

#include <DDKit/KernelStd.h>

/// @brief DDK equivalent of POSIX's string.h
/// @file kernelString.h

DK_EXTERN size_t kernelStringLength(const char* in);
DK_EXTERN int	 kernelStringCopy(char* dst, const char* src, size_t len);