Files
damus/nostrdb/src/str_block.h
William Casarin ccca6e58ec nostrdb: strblock: add typedef
I don't technically need this but it helps a lot on the swift side
of things since I already have code that uses this identifier of a
similar structure

Signed-off-by: William Casarin <jb55@jb55.com>
2025-08-11 16:40:00 -07:00

13 lines
160 B
C

#ifndef NDB_STR_BLOCK_H
#define NDB_STR_BLOCK_H
#include <inttypes.h>
typedef struct ndb_str_block {
const char *str;
uint32_t len;
} str_block_t;
#endif