Files
mop3/kernel/libk/string.h
kamkow1 c8fb575bdd
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s
Change formatting rules
2026-04-24 01:54:48 +02:00

33 lines
757 B
C

#ifndef _KERNEL_LIBK_STRING_H
#define _KERNEL_LIBK_STRING_H
#include <libk/std.h>
size_t memset(void* dst, uint8_t b, size_t n);
void* memcpy(void* dst, const void* src, size_t n);
void strncpy(char* dst, const char* src, size_t n);
size_t strlen(const char* str);
int memcmp(const void* s1, const void* s2, size_t n);
int strncmp(const char* s1, const char* s2, size_t n);
int strcmp(const char* s1, const char* s2);
char* strncat(char* dest, const char* src, size_t n);
void* memmove(void* dest, const void* src, unsigned int n);
#define strlen_null(x) (strlen((x)) + 1)
char* strchr(register const char* s, int c);
char* strcpy(char* strDest, const char* strSrc);
char* strcat(char* dest, const char* src);
#endif // _KERNEL_LIBK_STRING_H