lenochka/kernel_old/string.h
2019-03-29 00:27:42 +02:00

16 lines
311 B
C

#ifndef __STRING_H
#define __STRING_H
#include "os.h"
u32 kstrlen(const char* str);
void kstrcpy(char* dst,const char* src);
void kstrncpy(char* dst,const char* src,u32 maxLen);
char* kstrchr(char* src,char chr);
char* kstrrchr(char* src,char chr);
int kstrncmp(const char* haystack,char* needle);
#endif