#ifndef AXL_STRING_H #define AXL_STRING_H #include "axl_types.h" u32 axl_strlen(const i8* s); i8* axl_strcpy(i8* dst, const i8* src); i8* axl_strncpy(i8* dst, const i8* src, u32 n); i8* axl_strcat(i8* dst, const i8* src); i8* axl_strncat(i8* dst, const i8* src, u32 n); #endif // AXL_STRING