MODULE DEF ADD

This commit is contained in:
noverd 2025-01-13 21:17:33 +03:00
parent bcede20eac
commit 3d0b83ec61

View File

@ -1,6 +1,11 @@
#ifndef __K_STRING
#define __K_STRING
#include <kstdint.h>
int strcmp(const char *s1, const char *s2);
char *strcpy(char *dst, const char *src);
char *strcat(char *dst, const char *src);
int strlen(const char *s);
#endif