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>
13 lines
160 B
C
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
|