Add: better dynamic command management

This commit is contained in:
xamidev
2024-08-09 11:09:15 +02:00
parent 7b6f3ecd96
commit 3524fdc760
7 changed files with 72 additions and 50 deletions

View File

@@ -1,7 +1,7 @@
#ifndef INCLUDE_STRING_H
#define INCLUDE_STRING_H
int strlen(char* str);
int strcmp(char* str1, char* str2);
int strlen(const char* str);
int strcmp(const char* str1, const char* str2);
#endif