I was wondering if you could look at this issue:
struct book_t {
uint32_t page;
};
struct sample {
struct book_t books[10];
};
This is a bit of an unusual use case, where a dynamic array is declared inside the structure, as opposed to simply declaring a pointer to a separately initialized array. I was wondering if you could add support for this particular case? I am trying to use your library with some other pre-existing code structures which cannot change. Any help in this regard would be appreciated.