#ifndef FAT_H_ #define FAT_H_ #include /** * A fat pointer type that knows its own length. */ typedef struct { uint32_t len; void *value; } fat_t; #define fat_empty {0, NULL} #endif //FAT_H_