MCPcopy Create free account
hub / github.com/antirez/botlib / sdshdr64

Class sdshdr64

sds.h:69–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67 char buf[];
68};
69struct __attribute__ ((__packed__)) sdshdr64 {
70 uint64_t len; /* used */
71 uint64_t alloc; /* excluding the header and null terminator */
72 unsigned char flags; /* 3 lsb of type, 5 unused bits */
73 char buf[];
74};
75
76#define SDS_TYPE_5 0
77#define SDS_TYPE_8 1

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected