nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

str_block.h (160B)


      1 
      2 #ifndef NDB_STR_BLOCK_H
      3 #define NDB_STR_BLOCK_H
      4 
      5 #include <inttypes.h>
      6 
      7 typedef struct ndb_str_block {
      8 	const char *str;
      9 	uint32_t len;
     10 } str_block_t;
     11 
     12 #endif