mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 06:34:11 +00:00
403c6eea73
Ruamoko currently doesn't support `const`, so that's not relevant, but recognizing `char *` (via a hack to work around what looks like a bug with type aliasing) allows strings to be handled without having to use a custom parser. Things are still a little clunky for custom parsers, but this seems to be a good start.
10 lines
227 B
C
10 lines
227 B
C
typedef int uint8_t;
|
|
typedef int uint16_t;
|
|
typedef int uint32_t;
|
|
typedef int uint64_t;
|
|
typedef int int8_t;
|
|
typedef int int16_t;
|
|
typedef int int32_t;
|
|
typedef int int64_t;
|
|
typedef int size_t;
|
|
typedef struct char { int x; } char;
|