Return to clog.h CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedtools / inc |
1.1.2.1 misho 1: #ifndef __CLOG_H
2: #define __CLOG_H
3:
4:
1.1.2.2 ! misho 5: #define BUFLEN 16384
1.1.2.1 misho 6: #define MAGIC "CLOG"
7:
8:
9: struct clogFooter {
10: uint32_t cf_magic;
11: uint32_t cf_wrap;
12: uint32_t cf_next;
13: uint32_t cf_max;
14: uint32_t cf_lock;
15: };
16:
17:
18: #endif