#ifndef NDB_STR_BLOCK_H #define NDB_STR_BLOCK_H #include typedef struct ndb_str_block { const char *str; uint32_t len; } str_block_t; #endif