Files
metadesk/code/base/string.h
T
2025-02-01 18:30:43 -05:00

13 lines
152 B
C

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