Move string functions/utils from HAL to std/string
This commit is contained in:
@ -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_
|
||||
|
||||
Reference in New Issue
Block a user