game/axl_string.h
2025-11-30 17:32:50 +03:00

12 lines
294 B
C

#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