Checks whether chunk is a Null chunk, that is, it has a Null header. A Null header is defined as
void[size_t.sizeof] null_header; null_header[] = 0;
Since no payload can be follow a Null header, a Null header is a complete chunk on itself, that is the Null chunk.
input chunk
true if chunk is a Null chunk or false otherwise.
See Implementation
Checks whether chunk is a Null chunk, that is, it has a Null header. A Null header is defined as
Since no payload can be follow a Null header, a Null header is a complete chunk on itself, that is the Null chunk.