Re: sys/queue.h



The structure
<code>
struct packetCache
{
struct packetCache *next;
ssize_t len;
unsigned char data[0];
};

The unsigned char data[0] is this essentially making a single char?

.