MSL: match alloc/signal/string and most of printf

This commit is contained in:
mrshigure 2025-01-29 14:19:43 -08:00
parent 6347294c14
commit b353af7d23
7 changed files with 1346 additions and 858 deletions

View file

@ -85,7 +85,7 @@ typedef struct _FILE {
file_modes file_mode;
file_states file_state;
char is_dynamically_allocated;
unsigned char is_dynamically_allocated;
char char_buffer;
char char_buffer_overflow;
char ungetc_buffer[2];

View file

@ -10,7 +10,7 @@ char* strrchr(const char* str, int c);
char* strchr(const char* str, int c);
int strncmp(const char* str1, const char* str2, size_t n);
int strcmp(const char* str1, const char* str2);
char* strcat(char* dst, const char* src);
char* strcat(char* dst, const char* src, size_t n);
char* strncpy(char* dst, const char* src, size_t n);
char* strcpy(char* dst, const char* src);
size_t strlen(const char* str);