game/axl_string.h
2025-11-27 20:58:48 +03:00

9 lines
158 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);
#endif // AXL_STRING