| 49 | char buf[]; |
| 50 | }; |
| 51 | struct __attribute__ ((__packed__)) sdshdr8 { |
| 52 | uint8_t len; /* used */ |
| 53 | uint8_t alloc; /* excluding the header and null terminator */ |
| 54 | unsigned char flags; /* 3 lsb of type, 5 unused bits */ |
| 55 | char buf[]; |
| 56 | }; |
| 57 | struct __attribute__ ((__packed__)) sdshdr16 { |
| 58 | uint16_t len; /* used */ |
| 59 | uint16_t alloc; /* excluding the header and null terminator */ |
nothing calls this directly
no outgoing calls
no test coverage detected