Files
metadesk/code/dependencies/string.h
T
2025-02-01 14:28:12 -05:00

12 lines
139 B
C

#if MD_INTELLISENSE_DIRECTIVES
#include "base_types.h"
#endif
typedef struct String8 String8;
struct String8
{
U8 *str;
U64 size;
};