#ifndef __CLOG_H #define __CLOG_H #define BUFLEN 16384 #define MAGIC "CLOG" struct clogFooter { uint32_t cf_magic; uint32_t cf_wrap; uint32_t cf_next; uint32_t cf_max; uint32_t cf_lock; }; #endif