- Nov 2, 2015
- 997
- 723
- 161
Hmm thats not actually right.TeamspeakString is just std::string compiled on gcc. And ... zZz
struct string {
union {
uint64_t length;
uint64_t allocated;
uintptr_t ptr;
} _l;
union {
uint8_t flag; //7 bits length | 1 bit short flag
char data[23];
} _s;
union {
uint64_t data[3];
} _r;
} //sizeof(string) = 0x18