1 2 3 4 5 6 7 8 9 10 11 12
/* This file contains common data structure that cells use. */ struct cell_extension_fields { u8 field_type; u8 field_len; u8 field[field_len]; }; struct cell_extension { u8 num; struct cell_extension_fields fields[num]; };