game/axl_string.h
2025-11-27 21:10:44 +03:00

10 lines
206 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);
#endif // AXL_STRING