binana/profile/3.3.5a-windows-386/include/bc/string/quickformat.h
superp00t 1c5ace1e7f
Some checks failed
Push / build (push) Has been cancelled
feat(profile): added bc information
2026-04-04 07:12:21 -04:00

13 lines
556 B
C

#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