binana/profile/3.3.5a-windows-386/include/bc/string/quickformat.h

14 lines
556 B
C
Raw Normal View History

2026-04-04 07:12:21 -04:00
#ifndef BC_STRING_QUICK_FORMAT_H
#define BC_STRING_QUICK_FORMAT_H
#define BC_STRING_QUICK_FORMAT(N) \
typedef struct Blizzard__String__QuickFormat_##N Blizzard__String__QuickFormat_##N; \
struct Blizzard__String__QuickFormat_##N { \
char m_buffer[N]; \
};
// Blizzard::String::QuickFormat<1024>
BC_STRING_QUICK_FORMAT(1024);
#endif