NeKernel dev
Loading...
Searching...
No Matches
str.h
Go to the documentation of this file.
1/* -------------------------------------------
2
3 Copyright Amlal El Mahrouss.
4
5 Purpose: DDK Strings.
6
7------------------------------------------- */
8
9#pragma once
10
11#include <DDKKit/ddk.h>
12
15
16DDK_EXTERN size_t kstrlen(const char* in);
17DDK_EXTERN int kstrncpy(char* dst, const char* src, size_t len);
#define DDK_EXTERN
Definition macros.h:28
DDK_EXTERN size_t kstrlen(const char *in)
Definition ddk_str.c:11
DDK_EXTERN int kstrncpy(char *dst, const char *src, size_t len)
Definition ddk_str.c:25