fix(userspace/libc): interpreter didn't worked at all

This commit is contained in:
2025-04-18 12:38:21 +00:00
parent f5c9b561a9
commit cd23c59c46
7 changed files with 248 additions and 49 deletions

View File

@ -34,7 +34,14 @@ void *memcpy(void *dest, const void *src, size_t n);
size_t strlen(const char *s);
char *strcpy(char *dest, const char *src);
int strcmp(const char *l, const char *r);
int strncmp(const char *s1, const char *s2, size_t n);
char *strcat(char *dest, const char *src);
char *strrchr(const char *str, int c);
char *strncpy(char *destination, const char *source, unsigned long num);
char *strdup(const char *str);
unsigned int isdelim(char c, const char *delim);
char *strtok(char *src, const char *delim);
char *getenv(const char *name);
unsigned long elf_hash(const unsigned char *name);
uint32_t gnu_hash(const char *name);