Fix: explicit typecasting

This commit is contained in:
xamidev
2024-09-10 21:11:41 +02:00
parent bf0228d3ac
commit 64ccec0866
9 changed files with 22 additions and 12 deletions

View File

@@ -6,6 +6,8 @@
#ifndef STRING_H
#define STRING_H
#include "../kernel/system.h"
int strlen(const char* str);
int strcmp(const char* str1, const char* str2);
char* strtok(char* str, const char* delimiter);