mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-10-13 21:25:07 -07:00
mostly improvements to malloc
This commit is contained in:
11
kernel/string_utils.h
Normal file
11
kernel/string_utils.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef STRING_UTILS_H
|
||||
#define STRING_UTILS_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdarg.h> // Include for va_list and related macros
|
||||
|
||||
size_t my_strlen(const char *str); // Renamed to avoid conflict
|
||||
int my_vsnprintf(char *str, size_t size, const char *format, ...); // Renamed to avoid conflict
|
||||
int my_strcmp(const char *str1, const char *str2);
|
||||
|
||||
#endif // STRING_UTILS_H
|
Reference in New Issue
Block a user