| 61 | char buf[]; |
| 62 | }; |
| 63 | struct __attribute__ ((__packed__)) sdshdr32 { |
| 64 | uint32_t len; /* used */ |
| 65 | uint32_t alloc; /* excluding the header and null terminator */ |
| 66 | unsigned char flags; /* 3 lsb of type, 5 unused bits */ |
| 67 | char buf[]; |
| 68 | }; |
| 69 | struct __attribute__ ((__packed__)) sdshdr64 { |
| 70 | uint64_t len; /* used */ |
| 71 | uint64_t alloc; /* excluding the header and null terminator */ |
nothing calls this directly
no outgoing calls
no test coverage detected