game/axl_string.h

10 lines
158 B
C
Raw Normal View History

2025-11-27 20:51:48 +03:00
#ifndef AXL_STRING_H
#define AXL_STRING_H
#include "axl_types.h"
u32 axl_strlen(const i8* s);
2025-11-27 20:58:48 +03:00
i8* axl_strcpy(i8* dst, const i8* src);
2025-11-27 20:51:48 +03:00
#endif // AXL_STRING