| 55 | char buf[]; |
| 56 | }; |
| 57 | struct __attribute__ ((__packed__)) sdshdr16 { |
| 58 | uint16_t len; /* used */ |
| 59 | uint16_t alloc; /* excluding the header and null terminator */ |
| 60 | unsigned char flags; /* 3 lsb of type, 5 unused bits */ |
| 61 | char buf[]; |
| 62 | }; |
| 63 | struct __attribute__ ((__packed__)) sdshdr32 { |
| 64 | uint32_t len; /* used */ |
| 65 | uint32_t alloc; /* excluding the header and null terminator */ |
nothing calls this directly
no outgoing calls
no test coverage detected