Converts a C type to its corresponding struct format character.
A string representing the struct format equivalent of the given C type. For example, int8_t becomes b, uint16_t becomes H, char[24] becomes 24s, etc.
int8_t
b
uint16_t
H
char[24]
24s
Error if the given C type is not recognized.
The C type as a string (e.g., int8_t, uint32_t, char[24], etc.).
uint32_t
Generated using TypeDoc
Converts a C type to its corresponding struct format character.
Returns
A string representing the struct format equivalent of the given C type. For example,
int8_t
becomesb
,uint16_t
becomesH
,char[24]
becomes24s
, etc.Throws
Error if the given C type is not recognized.