Move string functions/utils from HAL to std/string

This commit is contained in:
2025-11-11 19:54:09 +01:00
parent f5dae4984d
commit 344952fb5f
27 changed files with 200 additions and 228 deletions

View File

@ -12,5 +12,7 @@ size_t strspn(const char *s, const char *accept);
char *strcpy(char *dest, const char *src);
char *strchr(const char *s, int c);
int memcmp(const void *s1, const void *s2, int len);
char *strstr(const char *str, const char *substring);
char *strcat(char *dest, const char *src);
#endif // STD_STRING_H_